-
Notifications
You must be signed in to change notification settings - Fork 86
Description
Is it possible to animate the position of a marker/cluster that is created with ClusterKit when used with Mapbox?
Mapbox supports this with native markers, although the same code does not work when applied to ClusterKit. Here is a demo on how Mapbox do this on iOS - https://docs.mapbox.com/android/maps/examples/animate-marker-position/
At the moment, we are having to destroy the cluster and rebuild it at the new coordinates, which is not a very nice user experience since it looks like the cluster is disappearing from one location and appearing at another - almost like it is jumping coordinates very quickly. We would like to animate the position of the cluster so that it appears like it is smoothly transitioning from one location to another.
We're also tried a few suggestions from this thread, although none seemed to work - mapbox/mapbox-gl-native#8378 (comment)
When attempting to apply any of the above solutions, the cluster/marker refuses to move position, and instead, it just stays at its original coordinates.
Is animating the position of a marker/cluster currently possible with ClusterKit?