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?
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?
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)