Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently I worked on an android project in which I managed to add markers to a MapView and cluster those markers if they were too close to each other. Now I have to do the same using the new MapFragment - Google Maps Android API v2.

The markers now are succesfully added to the map, but I can't manage to make the clustering part and I can't find any usuable description about this topic. Do you know a way to implement this using the new API?

Any help would be much appreciated.

share|improve this question
2  
You may also want to have a look at Android Maps Extensions. – MaciejGórski Mar 25 at 8:57
Yeah, thanks for the comment, I've already found this link, but unfortunately only after implementing my own solution. Anyway, I'll try this one as well, maybe its performance is better when working with 500+ markers, it's pretty slow on my Samsung Galaxy S :( – Analizer Mar 25 at 10:02

2 Answers

For anyone still in need of a clustering solution, also take a look at Clusterkraf. It's an Apache v2 licensed open source clustering library for the Google Maps Android API v2. It clusters points based on pixel proximity, animates transitions between clusters when zooming, handles thousands of markers, and supports Android v2.2 and higher.

share|improve this answer
This answer should be a comment. It is really nothing more than a link. – TronicZomB Apr 29 at 20:09
Nice library! The sample project is here: play.google.com/store/apps/….. Works well on the Hero so it's gotta be solid. – MinceMan May 1 at 16:27
up vote 1 down vote accepted

Finally I managed to solve this issue reworking this solution:

Wrong titles for markers with Google Map Android API v2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.