Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Maps Point Clustering

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

like image 858
weakwire Avatar asked Sep 16 '11 15:09

weakwire


People also ask

How many markers can Google Maps handle?

2048 characters in URL is just under 100 GeoCode values. So, again no more than 100 markers.

How do I remove a marker cluster from Google Maps?

Removing all markers You can then clear all the markers using clearMarkers something like this: markerClusterer. clearMarkers(); markers = [];


1 Answers

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

like image 57
weakwire Avatar answered Oct 05 '22 03:10

weakwire