Android Map Extensions on zoom cluster transition

539 views Asked by At

I was implementig maps extensions in my solution, and i cant figure out how to activate the cluster transition animation. There is a class called ClusterAnimator but is not used in the example.

So the question is, how can activate the cluster transitions in android map extensions implementation using the default clustering strategy?.

I want to get the same transition than the original maps library does on zoom in and out with the markers and clusters.

1

There are 1 answers

5
P-a Bäckström On

Have you set your clustermanager as the mapview's OnMapCameraChangeListener ?

Take a look at the BigClusteringDemoActivity demo-application, which does the following:

getMap().setOnCameraChangeListener(mClusterManager);

EDIT I wrongly assumed that the question was about Google Maps Android API utility library and its ClusterManager, which it wasn't.