I'm using Android Google Map utils to enable clustering of my Markers. I'm using 10 Markers
When I press on a button, I call:
mGoogleMap.moveCamera(CameraUpdateFactory.newLatLngBounds(getMarkerBoundingBox(), MAP_PADDING));
Eight of my markers are close to a given region so they are clustering and I can see a blue ball with the number eight on the center. The other two markers are far away from the other group but are really close to each other.
I'm now seeing a cluster with the eight markers and far away a single marker. Only if I zoom in in the area that single marker (that in fact are two) I can see both markers.
I want to show the cluster of the eight markers but a cluster of that two.
How can I decrease the distance that a cluster is created? At the limit, if markers are too close, I want clusters to be created at zoom level last but one.
I've tried to change MAX_DISTANCE_AT_ZOOM
at NonHierarchicalDistanceBasedAlgorithm.java
but with no success. Any ideas??