Clustering map markers on zoom out and unclustering on zoom in

前端 未结 4 1331
南旧
南旧 2020-12-30 17:19

I am using the Google Map Android clustering Utitlity With Google Maps v2 play services.

I am not getting the behavior I expected. As you can see in the two images

4条回答
  •  悲&欢浪女
    2020-12-30 17:57

    For someone who is struggling to do the same.. in your custom renderer override these two function as below @Override protected int getBucket(Cluster cluster) { return cluster.getSize(); }

    @Override
    protected String getClusterText(int bucket) {
        return String.valueOf(bucket);
    }
    

提交回复
热议问题