On Sep 3, 10:30 am, "maps.huge.info [Maps API Guru]" <[EMAIL PROTECTED]> wrote: > Your hosting provider is hijacking your load of the map with a > window.onload statement in their Javascript. I suggest you either > abandon that provider or use an inline form of execution for your map.
or change your code to call initialize() inline just before the </ body> tag... You might even be able to re-hijack the onload event handler (but probably the above would be more reliable) something like: //**** DANGER UNTESTED CODE **** <script type="text/javascript"> initialize(); </script> </body> </html> > > -John Coryat > > http://maps.huge.info > > http://www.usnaviguide.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
