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.
After #3589 and #1582 land, the map and/or user dot will animate smoothly in response to user location updates. Sometimes location updates get backed up; Core Location sends these updates in a batch once it catches up. However, -[MGLMapView locationManager:didUpdateLocations:animated:] drops these intermediate locations, animating directly to the latest location.
MGLMapView should take a path through the intermediate locations. This way, if the Core Location backup occurred along a curved road, the user dot won’t appear to take a shortcut. For bonus points, we could add an API to mbgl::Transform for animating along an arbitrary path.
After #3589 and #1582 land, the map and/or user dot will animate smoothly in response to user location updates. Sometimes location updates get backed up; Core Location sends these updates in a batch once it catches up. However,
-[MGLMapView locationManager:didUpdateLocations:animated:]
drops these intermediate locations, animating directly to the latest location.MGLMapView should take a path through the intermediate locations. This way, if the Core Location backup occurred along a curved road, the user dot won’t appear to take a shortcut. For bonus points, we could add an API to
mbgl::Transform
for animating along an arbitrary path./cc @friedbunny @tobrun
The text was updated successfully, but these errors were encountered: