Open GoogleCodeExporter opened 8 years ago
As a workaround you may change few lines of code in ClusterMarker:
void refresh() {
int count = markers.size();
if (count == 0) {
cacheVirtual();
} else if (count == 1) {
cacheVirtual();
markers.get(0).changeVisible(true);
into:
} else if (count < 4) {
cacheVirtual();
// loop over markers, changing them to visible
Original comment by maciek.g...@gmail.com
on 6 Jun 2013 at 9:25
cool. thanks!
Original comment by lvid...@gmail.com
on 7 Jun 2013 at 7:41
Added ClusteringSettings.minMarkersCount(int)
This will be available in version 2.2
Original comment by maciek.g...@gmail.com
on 23 Feb 2014 at 12:00
Original issue reported on code.google.com by
lvid...@gmail.com
on 6 Jun 2013 at 4:04