是否没有Google API Key for Elevation Service?

时间:2016-01-21 20:51:43

标签: javascript google-maps google-elevation-api

我正在尝试执行Elevation Service示例。我使用我的Google帐户创建了一个API密钥,然后点击了" YOUR_API_KEY"链接在" JAVASCRIPT + HTML"的底部部分,这帮助我从我的应用程序中选择一个API密钥,然后插入。然后我将代码复制并粘贴到我的机器上并运行样本,但是我收到以下错误:

  

此页面无法显示Google地图元素。提供的Google API密钥无效,或者此网站无权使用它。错误代码: InvalidKeyOrUnauthorizedURLMapError

是否有人使用费用API密钥成功执行Google Elevation Service请求?

以下是我尝试执行的代码:

<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="utf-8">
    <title>Elevation service</title>
    <style>
      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }
      #map {
        height: 100%;
      }
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script>
function initMap() {
  var map = new google.maps.Map(document.getElementById('map'), {
    zoom: 8,
    center: {lat: 63.333, lng: -150.5},  // Denali.
    mapTypeId: 'terrain'
  });
  var elevator = new google.maps.ElevationService;
  var infowindow = new google.maps.InfoWindow({map: map});

  // Add a listener for the click event. Display the elevation for the LatLng of
  // the click inside the infowindow.
  map.addListener('click', function(event) {
    displayLocationElevation(event.latLng, elevator, infowindow);
  });
}

function displayLocationElevation(location, elevator, infowindow) {
  // Initiate the location request
  elevator.getElevationForLocations({
    'locations': [location]
  }, function(results, status) {
    infowindow.setPosition(location);
    if (status === google.maps.ElevationStatus.OK) {
      // Retrieve the first result
      if (results[0]) {
        // Open the infowindow indicating the elevation at the clicked position.
        infowindow.setContent('The elevation at this point <br>is ' +
            results[0].elevation + ' meters.');
      } else {
        infowindow.setContent('No results found');
      }
    } else {
      infowindow.setContent('Elevation service failed due to: ' + status);
    }
  });
}

    </script>
    <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&signed_in=true&callback=initMap"
        async defer></script>
  </body>
</html>

更新

我创建了一个浏览器密钥,现在代码可以运行了!谢谢!

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要使用Google Maps Javascript API v3 Elevation Service的浏览器密钥。这就是您发布的代码中Elevation Service中使用的内容。

var elevator = new google.maps.ElevationService;
// Initiate the location request
elevator.getElevationForLocations({
  'locations': [location]
}, function(results, status) {
  infowindow.setPosition(location);
  if (status === google.maps.ElevationStatus.OK) {
    // Retrieve the first result
    if (results[0]) {
      // Open the infowindow indicating the elevation at the clicked position.
      infowindow.setContent('The elevation at this point <br>is ' +
          results[0].elevation + ' meters.');
    } else {
      infowindow.setContent('No results found');
    }
  } else {
    infowindow.setContent('Elevation service failed due to: ' + status);
  }
});

working example with browser key

如果您使用Google Maps Elevation Web Service,则需要服务器密钥。

相关问题