Clustermanager Isn't Redrawing Markers
I'm trying to use ClusterManager in order to cluster my CustomMapMarkers, but when the marker data changes and I call mClusterManager.cluster(), the pin positions don't change. Cod
Solution 1:
I had overridden my Marker
implementation's hashCode()
method, which was apparently causing the usual replacing functionality of hash-type collections to act wonky. My solution was to remove my custom implementation and work around the need for it.
Post a Comment for "Clustermanager Isn't Redrawing Markers"