标签: javascript internet-explorer google-maps
我正在使用新的Google地图API v3。
它适用于Firefox / Chromo / Safari,但地图不会在IE6中加载。
为什么页面会在IE6以外的所有浏览器中加载我的地图?
答案 0 :(得分:3)
只需替换此代码
var marker = new google.maps.Marker({ position: point, map: map, icon: image, });
到这个
var marker = new google.maps.Marker({ position: point, map: map, icon: image });
(第509行)