> Hello, my map migrating to google app engine quit loading after an > update. Maybe you can look and see what I'm doing > wrong:http://web.montao.com.br/
Guessing that your update was to do with converting to asynchronous API loading, you ought to follow the documentation http://code.google.com/apis/maps/documentation/javascript/v2/basics.html#AJAX_Loader Note the use of google.maps.xxx instead of Gxxx which will become important after you have sorted the loading issue. I get an intermittent failure to load maps API in FF2, problems with document.body, which is some subtle timing issue depending on whats cached already. Quoting the documentation at http://code.google.com/apis/ajax/documentation/#Dynamic "Make sure the DOM is ready when you call google.load with the callback option because it will try to append an element to the DOM." In the example, you could do that by calling loadMaps() from the webpages onload event. -- 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.
