Can anyone suggest how to remove markerClusterer when map is at max. zoom level so that markers are made visible.

also having problem in showing the markers with same latitude and longitude. When map is at max. zoom level even then marker clusterer is showing.

plz suggest something...

i was initialized markerClusterer as

zoom=zoom==-1?null:zoom;
size=size==-1?null:size;
style=style==-1?null:style;
markerClusterer=new MarkerClusterer(map,markers,{maxZoom:zoom,gridSize:size,styles:map_cluster_style[style]});

Wants to remove markerClusterer When map is at max. zoom level when one or more markers are at same location

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Finally i resolved it my self.

by defining the value of zoom which is equal to the maxzoom of the map.

zoom=zoom==-1?18:zoom;

size=size==-1?null:size; style=style==-1?null:style; markerClusterer=new MarkerClusterer(map,markers,{maxZoom:zoom,gridSize:size,styles:map_cluster_style[style]});

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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