Google Maps API显示空白地图

时间:2013-08-29 11:39:53

标签: javascript google-maps-api-3

我确定这是一个基本的问题,但我现在已经多次撞墙了,所以希望有人会怜悯我!

我有以下示例,但它只是显示一个灰色的框,根本没有地图。谁能告诉我为什么?

我已经检查过我实际上正在返回一个结果,它似乎工作正常。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <title></title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <style>
            html, body, #map-canvas {margin: 0;padding: 0;height: 100%;}
        </style>
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
    <script>
      var geocoder;
      var map;

      function initialize() 
      {
        geocoder = new google.maps.Geocoder();        
        geocoder.geocode( { 'address': "England"}, function(results, status) 
        {
          if (status == google.maps.GeocoderStatus.OK) 
          {
            var mapOptions = {
              zoom: 8,
              center: new google.maps.LatLng(results[0].geometry.location),
              mapTypeId: google.maps.MapTypeId.ROADMAP
            }

            // Let's draw the map
            map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);

          } 
          else 
          {
            alert("Geocode was not successful for the following reason: " + status);
          }
        });
      }

    initialize();
    </script>
  </head>

  <body onload="">
 <div id="map-canvas" style="width: 320px; height: 480px;"></div>
</body>
</html>    

6 个答案:

答案 0 :(得分:7)

results[0].geometry.location已经是一个latLng对象,所以你可以说:

center: results[0].geometry.location

在这里找到工作小提琴:http://jsfiddle.net/87z9K/

答案 1 :(得分:2)

这是因为提供了错误的“google.maps.LatLng”。 提供测试coords它将工作。 替换

center: new google.maps.LatLng(results[0].geometry.location),

center: new google.maps.LatLng(-34.397, 150.644)

获得英格兰coords

答案 2 :(得分:1)

这不是你的问题,但密切相关。

我发现我必须使用有效的centre设置mapOptions,如下所示:

new google.maps.Map(mapCanvas, {
    center: new google.maps.LatLng(-34.397, 150.644)
});

如果我没有输入地图选项,或者如果我没有输入地图选项,但它没有设置有效的center,我会得到一张空白地图,但不是装载瓷砖。

答案 3 :(得分:0)

如果地图的高度/宽度为0,也会发生这种情况。

答案 4 :(得分:0)

我试图设置地图的MapTypeId,并且在Anurag提出建议时有所帮助:

map.setMapTypeId(google.maps.MapTypeId.TERRAIN);

答案 5 :(得分:-4)

我可以看到代码的一般JavaScript问题。

您的脚本可能会在加载HTML之前尝试将地图嵌入页面中。

像这样调用函数(还有其他方法)。

<body onload="initialize()">