How to detect that the 25000 request per day limit has been reached in Google Maps?

前端 未结 3 1282
故里飘歌
故里飘歌 2020-12-03 23:44

I\'m working on a website using the Google Maps Javascript API v3.

The free version of the API is limited by 25000 requests a day. But what happens if this limit is

相关标签:
3条回答
  • 2020-12-03 23:47

    You cannot detect via the API that the request limit has been reached. There are no events that are fired and the API does not expose a function or property to determine that the API quota has been reached.

    Google has decided that this is not a feature they will implement.

    https://issuetracker.google.com/issues/35830575#comment12

    0 讨论(0)
  • 2020-12-03 23:50

    @kilogauss I would disagree that falling back to static Google Map is not an option.

    According to https://developers.google.com/maps/faq#usagelimits

    "Web sites and applications using the Google Maps API may at no cost generate up to 25,000 map loads per day FOR EACH service" (capitalization and boldface mine).

    And on https://developers.google.com/maps/faq#usage_pricing, you can see that JS Maps API v3 and Static Maps API are separate services.

    0 讨论(0)
  • 2020-12-03 23:54

    The usage limit is based on site or application, not the client IP address.

    You can use the Google API console to monitor your usage if you add an API key to each of your map requests. I have not seen a way to query the usage programmatically. https://code.google.com/apis/console

    Per the comment below by @alds, it does appear that JS Maps API v3 and Static Maps API are separate services, therefore having separate request limits. Falling back to a static Google map image could help.

    This also explains the usage limits in better detail: http://googlegeodevelopers.blogspot.com/2011/11/understanding-how-maps-api-usage-limits.html

    0 讨论(0)
提交回复
热议问题