I suspect some sort of timing issue. Is it possible that your $.ajax call completes before your google.load() callback? That could cause you to add markers to a map that hasn't yet been created.
Is it possible that your google.load() call completes before $(document).ready? That could cause the google.load() callback to complete before you've performed google.setOnLoadCallback(initialize), so initialize() won't have been called. MSIE is being rather cryptic, so I suggest adding GLog.write() calls to your various callback functions that are involved in the initial set up. -- http://econym.org.uk/gmap The Blackpool Community Church Javascript Team --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
