On Jun 24, 10:27 am, Alex <[email protected]> wrote: > Hey guys > > We installed the google map api (Maps JavaScript API version 2). > Everything is working well in FireFox and Chrome however we are having > a difficult time getting it to load in Internet Explorer. > > Here is the site:http://geothermalgenius.org/states/geomap/ > > When a user fills out the form their location is geocoded then added > to an SQL database. The map then pulls the geocode from the database > and plots it on the map. > > Other factors: this is built within WordPress , it currently does not > validate but even when we do get it to validate by removing a few > things it still won't show up in IE > > Thank you in advance for your help, we have been spending days on it > and are thankful for any assistance.
IE creates complimentary variables with the same name as divs when you don't declare the javascript variables with "var". I think you have this problem with "map". If I add "var map;" just before your initialize function, the map loads on my local machine. -- Larry -- 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.
