> I'm using a <body onload="start_map()"> tag to allow the DOM to load
> before running the API, however Chrome seems to abort trying to load
> the map immediately from google.
> ...    http://svnakia.blogspot.com

I don't have Chrome to try, but
     <body onload="start_map()" ...
        window.attachEvent('onload', function(){ ...
look to be mutually incompatible to me.    It'll depend on the browser
exactly which onload events get destroyed by the other method, but you
need to avoid using the <body> method if you are are trying to attach
more than one function to onload.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to