google-maps-clustering
google-maps-clustering copied to clipboard
Fast marker clustering library for Google Maps Android API.
By using the ObjectAnimator [when animating map markers](https://github.com/sharewire/google-maps-clustering/blob/64d274daa934cd89deb567495e27a6f73242df21/library/src/main/java/net/sharewire/googlemapsclustering/ClusterRenderer.java#L195), the variable name `position` gets obfuscated for release, crashing the app. ```kotlin private void animateMarkerToLocation(@NonNull final Marker marker, @NonNull LatLng targetLocation, final...
Hi, on some devices I encountered this problem. Need your help. 
i change the cluster icon to a personlized one, but the text dissepire i can't show it please help and thank you clusterManager.setIconGenerator(new IconGenerator() { @NonNull @Override public BitmapDescriptor getClusterIcon(@NonNull...
Adding opportunity to disable animation, becouse it's cause perfomance lags on slow devices (~5k markers in one city. Xiaomi Redmi 4 Prime).
Hi. I do not understand how to make clustering after click on Cluster? In google library we go that: ` @Override public boolean onClusterClick(final Cluster cluster) { map.animateCamera(CameraUpdateFactory.newLatLngZoom( cluster.getPosition(), (float)...
Hey it's me again. I noticed that when I pause my application and come back in all of the items and clusters are still shown. I noticed that there isn't...
It doesn't appear there is a way to define an algorithm or define cluster group ids. This would allow for objects that implement ClusterItem to define a "type" so only...
Split ClusterManager.Callbacks interface into 2 separate interfaces to make a good use of SAM-conversion.