Here is my page: http://fanmarkers.com/jobmap

In Firefox and Chrome, if you zoom in, the overlays disappear and a
new TileOverlay is added. In IE and Opera, the first overlays are
never removed and the new overlays are never added. Here is the code
that gets called when the zoom is changed:

------------------------
function figure_zoom()
{
        map.clearOverlays();

        if(map.getZoom() < 3 ){
                map.addOverlay(africa[0]);
                map.addOverlay(americas[0]);
                // ...

                for(i=0; i<labels.length; i++)
                {
                        map.addOverlay(labels[i]);
                }
        }
        else
                map.addOverlay(BaseOverlay);

}
---------------------

I think the problem is with .clearOverlays(). Is there an alternative?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to