Jithin Sunny
Jithin Sunny

Reputation: 3402

Get Markers from ClusterManager

I am using ClusterManager to group the markers in android application.

I want to get list of markers and use

mClusterManager.getMarkerCollection().getMarkers();

This method returns no markers when we zoom out.and returns markers only when zoom in to show all markers.is there any way to get all markers ?

Upvotes: 3

Views: 5267

Answers (1)

Efroz Ghauri
Efroz Ghauri

Reputation: 69

Try this:

java.util.Collection<Marker> userCollection = mClusterManager.getMarkerCollection().mMarkers;       
ArrayList<Marker> userList = new ArrayList<Marker>(userCollection);
Log.d("list", "size: " + userList.size());

Upvotes: 2

Related Questions