var center = new google.maps.LatLng(18.133333, 21.566667);
var map = new google.maps.Map(document.getElementById('map'), {zoom: 11,center: center,mapTypeId: google.maps.MapTypeId.TERRAIN});


我的html中有一个通过名称映射的DIV。

    <div id="map"></div>


JS在myscript.js中称为Initialize的函数中,我在index.html中引用

- - - - - - -编辑 - - - - -
谷歌地图参考

<script src="http://maps.google.com/maps/api/js?sensor=false"></script>

最佳答案

在此div上设置宽度和高度。

在HTML中

 style='width:500px; height: 500px'


或在CSS中

#map { width: 500px; height: 500px }

关于javascript - 谷歌 map map 不会显示?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8832516/

10-13 08:53