Google maps api 3 谷歌地图v3反向地理编码是否有使用限制

Google maps api 3 谷歌地图v3反向地理编码是否有使用限制,google-maps-api-3,reverse-geocoding,Google Maps Api 3,Reverse Geocoding,我不知道去哪里问,所以我希望这就是那个地方 我想问谷歌地图v3反向地理代码是否有限制!我这样问是因为谷歌地理编码API的使用受到每天2500个地理定位请求的查询限制 function codeLatLng(newPosition) { geocoder = new google.maps.Geocoder(); var latlng = new google.maps.LatLng(newPosition.lat(), newPosition.lng()); geocode

我不知道去哪里问,所以我希望这就是那个地方

我想问谷歌地图v3反向地理代码是否有限制!我这样问是因为谷歌地理编码API的使用受到每天2500个地理定位请求的查询限制

function codeLatLng(newPosition) {

    geocoder = new google.maps.Geocoder();


  var latlng = new google.maps.LatLng(newPosition.lat(), newPosition.lng());
  geocoder.geocode({'latLng': latlng}, function(results, status) 
  {
    if (status == google.maps.GeocoderStatus.OK) 
    {
      if (results[1]) 
      {

        formattedaddress = results[0].formatted_address;
        alert (formattedaddress);

      } 
      else 
      {
        alert('No results found');
      }
    } 

对。地理编码器和反向地理编码器都受到速率限制和配额的限制

如果超过,您将获得的状态为