Google Maps API Restrictions

I used the google map API, but unfortunately I found that they have usage restrictions, so I want to know that in any case you will get the google API without any usage restrictions, and if it is not so how can i get a license?

+4
source share
1 answer

Google maps api usage and restrictions

Do I need an API key?

Answer: in the early days of Google maps, you donโ€™t need an API key (it still cannot have one due to backward compatibility), however today it is recommended to generate an API key for Google V3 maps. Also, keep in mind that some functions are not available without an API key.

If you want to inform yourself more about the API key, here is the official page that will tell you how to get started with it and how to include it in your project,

url: https://developers.google.com/maps/documentation/javascript/tutorial

What are the usage restrictions?

Answer: If your site receives 25,000 or more cartographic loads every day, the google team will contact you for more than 90 consecutive days (they are well aware of the use of your Google maps). If, however, you donโ€™t think your Google maps will generate this amount of traffic, do the following:

  • Modify your application so that your use is less than 25,000 map downloads per day.
  • Sign up for automatic billing for overloaded maps in the Google Developers Console.
  • Purchase a Google Maps API license to work.

Here is the official page for limits,

url: https://developers.google.com/maps/documentation/javascript/usage#quota

To summarize: If you can predict huge traffic on your website (and use the Google Maps API on your website), then carefully read the documents again and see what further steps need to be taken, otherwise you can experiment with Google maps like this same as you want.

+4
source

All Articles