Search code examples
androidmapsandroid-mapviewmarkerclusterer

Android Maps Point Clustering


Is there any code for Point Clustering in android? How can i load thousand pinpoint without having performance issues?


Solution

  • Last night i got into PointClustering on Android MapView. Saw that there was nothing out for the community so i would like to share.

    Groups the geopoints if the projection of them in the mapView is too close. Also renders only the visible poins.

    UPDATE

    Code reworked from scrach.

    Now available at GitHub

    1. Code Reworked from scratch
    2. Used GVM clustering algorithm (pretty fast but doesn't position clustered point as good as mine)
    3. Soon to add previous clustering algorithm too

    enter image description here