It's off centre when I click on the link in my email system.
For some reason your CSS is loading after your map has been created.
That's not normally a problem with Firefox, but is a problem with
Chrome, because Chrome processes CSS asynchronously to save time. I
wonder if Firefox has recently changed to using asynchronous CSS.
Anyway, try using inline style for sizing the map div
<div id="map" style="width:404px;height:303px;"></div>
Or specifying a {size} when you create the map
var map = new GMap2(document.getElementById('map'),{size:new
GSize(404,303)});
--
Mike Williams
http://econym.org.uk/gmap
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---