I am adding markers to marker manager
var MMgrOptions={trackMarkers:false,maxZoom:20};
MManager=new MarkerManager(map,MMgrOptions);
for (var i=0;i<this.Nodes.length;i++)
{
if (i!=0)
{
if (this.Nodes[i].SNo!=this.Nodes[i-1].SNo)
this.Markers.push(new GMarker(this.Nodes[i].GN));
}
//this.Markers.push(new GMarker(this.Nodes[i].GN));
//map.addOverlay(
}
MManager.addMarkers(this.Markers,10,20);
The problem is that when I zoom in/out the markermanager is working
fine but when I pan the markers that fall outside of the map are still
shown. Very recently this was working fine.
Please help
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---