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
{{ message }}
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
Animating a region change sometimes doesn't redraw the map's streets/text for the correct level. When zoomed into Chicago and animating to the state of New York, the map initially renders like below:
After slightly pinch zooming, the map will redraw itself at the correct level:
This happens when calling setCenterCoordinate:zoomLevel:animated: with YES for animated. We've seen it on v2.1.2 and v3.0.0-pre4.
The text was updated successfully, but these errors were encountered:
-setCenterCoordinate:zoomLevel:animated: uses easeTo(), which does use Update::Zoom at every step along the way, just like the pinch gesture recognizer. So I’m not sure what’s missing.
1ec5
changed the title
iOS GL - Animating region change can cause map to draw incorrect details
Programmatic animations fail to recalculate zoom-dependent properties
Nov 5, 2015
The final frame is self-destructing – it destroys the frame and finish functions – so technically we’re no longer inTransition(). Yet there still needs to be an update after that final frame.
Fixes#2946.
The final frame is self-destructing – it destroys the frame and finish functions – so technically we’re no longer inTransition(). Yet there still needs to be an update after that final frame.
Also, avoid a redundant change notification on the last frame. (It would come too late, after the DidChange notification, anyhow.)
Fixes#2946.
Animating a region change sometimes doesn't redraw the map's streets/text for the correct level. When zoomed into Chicago and animating to the state of New York, the map initially renders like below:
After slightly pinch zooming, the map will redraw itself at the correct level:
This happens when calling
setCenterCoordinate:zoomLevel:animated:
withYES
for animated. We've seen it on v2.1.2 and v3.0.0-pre4.The text was updated successfully, but these errors were encountered: