开发者

IE6: Doesn't load Google Maps API v3

开发者 https://www.devze.com 2022-12-08 07:25 出处:网络
I\'m using the new Google Maps API v3. It works great with Firefox/Chromo/Safari but the map doesn\'t load in 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.

Any ideas why the page loa开发者_如何学编程ds 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)

0

精彩评论

暂无评论...
验证码 换一张
取 消