Is there a 2,500 request limit for the Directions Web Service IP address?

I am developing an application using the "Directions Web Service". The documents indicate that the free version of the API is limited to 2500 requests per day. (See http://maps.google.com/help/maps/getmaps/compare.html ).

In our application, this request is executed in javascript in the client browser, this is not done by our server. Therefore, I am wondering if this limit is for each user's IP address or in some way it will go to my application URLs / IP addresses and limits this.

Any ideas?

+6
source share
1 answer

Using the Google Maps API v3 Directions Service in the Google Maps API v3, query limits and quotas are applied to each client (IP address).

Using the Directions Web Service , request limits and quotas apply to the server (to its IP address).

I agree that the link you provided does not make it clear what they are talking about.

+4
source

Source: https://habr.com/ru/post/926872/


All Articles