最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Google Places Library OVER_QUERY_LIMIT with new API key - Stack Overflow

programmeradmin2浏览0评论

I'm using the Places libary in my javascript application. It works fine when I use the service.nearbySearch() method to look up nearby places. When I then go to make a service.getDetails() request I get an OVER_QUERY_LIMIT status for each request. In my Developer Console, I can track every request made to the Google Maps JavaScript API v3, but I dont get any results from the places API.

Heres some of the code:

// How I load the library 
<script src=";key=API_KEY"></script>

// My places request
var places = new google.maps.places.PlacesService(map);
var location = new google.maps.LatLng(lat, lng);
var request = {
    location: location,
    radius: radius,
    types: [type]
  };

places.nearbySearch(request, function(results, status, pagination) {

    if (status === google.maps.places.PlacesServiceStatus.OK) {
      for (var i = 0; i < results.length; i++) {

      // Get the details for each place
      var detailsRequest = { placeId: results[i].id }

      places.getDetails(detailsRequest, function(place, status) {
        if (status == google.maps.places.PlacesServiceStatus.OK) {
            console.log('PLACE', place)
        } else {
            console.log('STATUS', status)
        }        
    })              
  };
}

Any ideas?

I'm using the Places libary in my javascript application. It works fine when I use the service.nearbySearch() method to look up nearby places. When I then go to make a service.getDetails() request I get an OVER_QUERY_LIMIT status for each request. In my Developer Console, I can track every request made to the Google Maps JavaScript API v3, but I dont get any results from the places API.

Heres some of the code:

// How I load the library 
<script src="https://maps.googleapis./maps/api/js?libraries=places&key=API_KEY"></script>

// My places request
var places = new google.maps.places.PlacesService(map);
var location = new google.maps.LatLng(lat, lng);
var request = {
    location: location,
    radius: radius,
    types: [type]
  };

places.nearbySearch(request, function(results, status, pagination) {

    if (status === google.maps.places.PlacesServiceStatus.OK) {
      for (var i = 0; i < results.length; i++) {

      // Get the details for each place
      var detailsRequest = { placeId: results[i].id }

      places.getDetails(detailsRequest, function(place, status) {
        if (status == google.maps.places.PlacesServiceStatus.OK) {
            console.log('PLACE', place)
        } else {
            console.log('STATUS', status)
        }        
    })              
  };
}

Any ideas?

Share Improve this question asked Mar 24, 2015 at 12:17 JDillon522JDillon522 19.7k15 gold badges50 silver badges82 bronze badges 2
  • You should look up what OVER_QUERY_LIMIT means in the Google Maps documentation. – Andy Commented Mar 24, 2015 at 12:21
  • I know what it means. I'm not hitting anywhere near the 1k limit. Much less am I able to track how many requests I'm making associated with my API key. The problem is that it shouldnt be returning that at all – JDillon522 Commented Mar 24, 2015 at 12:22
Add a ment  | 

2 Answers 2

Reset to default 6

The answer was that I was requesting the .getDetails() method too fast. Docs.

I was iterating over dozens of locations and requesting too many too fast. Often times I would only get the first 10 or 12 our of 60+ results before the OVER_QUERY_LIMIT error.

I moved the call to .getDetails() to the click event for the marker. That way only one request is sent at a time.

Also ran into the same issue. Seems like you have a pool of 9 or 10 requests you can exhaust, and then get allowance for an additional request every 1s.

Some people have said that the server-side version of the API allows for 50 requests per second, so I'm guessing Google is trying to prevent client-side instances overloading them, which makes sense.

For me, it was enough to just have the UI show spinners while the getDetails result/s e in. So I just throttled the requests after the first 9 or 10 like so:

nearbySearchCallback: function (places, status) {
  var that = this;
  if (status === window.google.maps.places.PlacesServiceStatus.OK) {
    for (var i = 0; i < places.length; i++) {
      // You seem to have a pool of 9 or 10 requests to exhaust,
      // then you get another request every second therein. 
      (function (i) {
        setTimeout(function () {
          service.getDetails({ placeId: places[i].place_id }, that.getDetailsCallback);
        }, i < 9 ? 0 : 1000 * i);
      })(i);
    }
  }
},
getDetailsCallback: function (place, status) {  /* ... */ }
发布评论

评论列表(0)

  1. 暂无评论