我写了一个网页,并将Google Map插入其中。但地图始终没有显示。我试图用Firebug看看发生了什么,发现没有错误。
地图画布的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>
答案 0 :(得分:2)
您没有设置地图div的尺寸,而是设置地图嵌套的div的尺寸。将div和width属性添加到div id'map-canvas'并显示地图。
<div id="map-canvas" style="width: 400px; height: 400px;">Loading...</div>
答案 1 :(得分:1)
您的地图div没有大小。这个:
<div id="map-canvas" style="height:300px; width:300px;">
让它显示给我。