提供API密钥时,Google地图无法使用

时间:2014-11-29 12:23:48

标签: google-maps google-maps-api-3

我得警惕说:

  

Google已禁止将Maps API用于此应用程序。该   提供的密钥不是有效的Google API密钥,或者未经授权   对于此网站上的Google Maps Javascript API v3。如果你是   您可以通过此应用程序的所有者了解获取有效密钥的信息   这里:   https://developers.google.com/maps/documentation/javascript/tutorial#api_key

使用带有API密钥的Google地图时。

我做了什么:

1.使用设置"处理新API密钥;允许任何引用"。

2.在我的本地Web服务器Hello World示例中部署了文档:

<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
      html, body, #map-canvas { height: 100%; margin: 0; padding: 0;}
    </style>
    <script type="text/javascript"
      src="https://maps.googleapis.com/maps/api/js?key=API_KEY">
    </script>
    <script type="text/javascript">
      function initialize() {
        var mapOptions = {
          center: { lat: -34.397, lng: 150.644},
          zoom: 8
        };
        var map = new google.maps.Map(document.getElementById('map-canvas'),
            mapOptions);
      }
      google.maps.event.addDomListener(window, 'load', initialize);
    </script>
  </head>
  <body>
<div id="map-canvas"></div>
  </body>
</html>

3.用新生成的密钥替换API_KEY。

当我访问此类页面时,我收到警报。我该如何解决?

1 个答案:

答案 0 :(得分:0)

正如Dr.Molle所说:问题在于没有在控制台中启用maps-javascript-API。