You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
year, you can write:
var before = null;
requestAnimationFrame(function animate(now) {
var c = map.getPosition();
var elapsed = before? now - before: 0;
before = now;
map.setCenter([c[0], c[1] + 0.1*(elapsed/30)]);
requestAnimationFrame(animate);
});
How can I achieve to make it rotate automatically?
The text was updated successfully, but these errors were encountered: