vote up 0 vote down star

I'm using the new Google Maps API v3.

It works great with Firefox/Chromo/Safari but the map doesn't load in IE6.

My map can be found here: http://tinyurl.com/ykzwb2

Any ideas why the page loads my map in all browsers except IE6?

flag

44% accept rate
1  
You might try the v3 forum: groups.google.com/group/… . If you do get a response there, please post it as an answer here (or a link to it anyway). – Jon B Oct 9 at 15:38

1 Answer

vote up 0 vote down check

Just replace this code

var marker = new google.maps.Marker({
    position: point,
    map:      map,
    icon:     image,
});

to this

var marker = new google.maps.Marker({
    position: point,
    map:      map,
    icon:     image
});

(line 509)

link|flag
Many, many thanks! Do you mind explain how you found that bug? – mp_ Oct 9 at 15:53
2  
@mp_: it's a known issue in JScript, Microsoft's implementation of ECMAScript. – NickFitz Oct 9 at 15:55
2  
I had to read through it 3 times to find the difference! Drop the last comma. – Robert Oct 12 at 19:06
Running the code through an IDE like Intellij IDEA will give you big highlights showing this kind of typo. – Gary Rowe Oct 14 at 12:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.