0

我知道地图正在加载,但无论出于何种原因,我都看不到它们。

JS

function initialize() {
  var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
  var mapOptions = {
    zoom: 4,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

  var marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      title: 'Hello World!'
  });
}

标记

<div id="map-canvas">

</div>

我知道这一定很简单,我有点困惑为什么我不能解决,但这里是链接:http ://stage.sexdiaries.co.uk/map

4

1 回答 1

0

你需要给地图一个大小:

<div id="map-canvas" style="height:500px;width:600px;"></div>
于 2013-07-19T09:36:41.577 回答