我写了一个网页,并在其中插入了谷歌地图。但地图总是不显示。我尝试使用 Firebug 查看发生了什么,发现没有错误。
map-canvas 的 div 已被Google Map API正确替换,但该 div 未显示...我调试了几天,仍然没有解决方案。
<html><head>
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta content="initial-scale=1.0, user-scalable=no" name="viewport">
<meta charset="utf-8">
<title>TaskPaneApp1</title>
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js" style=""></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
</head>
<body>
<!-- Page content -->
<div id="content-header">
<div class="padding">
<h1>Welcome</h1>
</div>
</div>
<div id="content-main">
<div class="padding">
<p><strong>Add home screen content here.</strong></p>
<p>For example:</p>
<button id="get-data-from-selection">Get data from selection</button>
<p style="margin-top: 50px;">
<a href="http://go.microsoft.com/fwlink/?LinkId=276812" target="_blank">
Find more samples online...
</a>
</p>
<div style="position: relative">
<p>Hey there!</p>
<div style="position: relative; width: 100%; height: 500px">
<div id="map-canvas">
Loading...
</div>
</div>
<p>This is the end of the map</p>
</div>
</div>
</div>
<script type="text/javascript">
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</body></html>