所以我已经在这个问题上工作了很长时间。基本上我只是将谷歌地图添加到我的网页上。我使用来自 google maps API v3 网站的示例。它没有显示在 IE 中,我不知道为什么!它在 chrome 和 FF 以及 IE 10 中显示,但在 IE8-9 中不显示。
有人知道为什么吗?
<script src="http://maps.googleapis.com/maps/api/js?key=APIKEY&sensor=false">
</script>
<div id='map' class="eventMap"></div>
function initialize()
{
var mapProp = {
center:new google.maps.LatLng(51.508742,-0.120850),
zoom:5,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById('map'), mapProp);
}
google.maps.event.addDomListener(window, 'load', initialize);
});