Cluster Markers on Android v2 Maps

I recently worked on an Android project in which I was able to add markers to MapView and group these markers if they were too close to each other. Now I have to do the same using the new MapFragment - Android API Google Maps Maps v2.

Now the markers have been successfully added to the map, but I cannot do part of the clustering, and I cannot find any convenient description of this topic. Do you know a way to implement this with the new API?

Any help would be greatly appreciated.

+4
source share
1 answer

For those who still need a clustering solution, also take a look at Clusterkraf . This is the Apache v2 open source cluster license library for the Google Maps v2 Android API. It groups points based on proximity of pixels, animates transitions between clusters when scaling, processes thousands of markers and supports Android v2.2 and higher.

+12
source

All Articles