Yah & thanks I simply added that to the existring
function showOverlays(aOverlays) {
if (aOverlays) {
//alert(aOverlays.length);
for (i in aOverlays) {
aOverlays[i].setMap(myMap.map) ;
aOverlays[i].setOptions({map:myMap.map, visible:true});
}
}
but If simple do EXACTLY like you show in the example all is well
if (aOverlays) {
//alert(aOverlays.length);
for (var i = 0; i < ecMap.orderOverlays.length; i++) {
ecMap.orderOverlays[i].setOptions({ map: ecMap.map, visible:
true });
}
}
Thanks again for the pointer
>If you have enough markers to need the clusterer, unclustering all of
>them will make the performance of the map unacceptable, particularly
i>n IE.
ya we have maybe 500-1000 and when we drill down
maybe 2-100 so for the better clarity I dont he will be an issue
but could pt to keep in mind
it be nice if the markerCluster could just be on it own div
then we could simply hide show the cluster div with the clsuter
markers then i can se much of a performance issue
On Sep 18, 11:53 am, "
geocode...@gmail.com" <
geocode...@gmail.com>