> I fixed the Error: 'map' is null or not an object  by putting map =
> new GMap2(document.getElementById("map")); in the GDownloadUrl
> function, however this stops the plotting on the map but fixes the
> sidebar isssue

Not fixed in FF2.
Breaks on this line in your GDownloadUrl callback -
   map.clearOverlays();
because just beforehand you do -
    map = document.getElementById("map");
which destroys any refrence to the GMap2 object by overwriting it with
a reference to a <div>
Just take that line out.

--

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=.


Reply via email to