Google Maps Geocode API, how to access with your API Key? [closed]

我的梦境 提交于 2019-12-08 00:35:05

问题


According to Google Map's Geocode API documentation:

https://developers.google.com/maps/documentation/geocoding/index#GeocodingRequests

you can simply make a call to the geocode request address like this:

http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false

However, according to this section, there is a usage limit of 2500 requests per day.

  • Because the request url doesn't contain any type of API key parameter, how is Google tracking the query limit? Is it simply by the client's IP address?
  • I have a Google Maps API v3 key, which says that there is a "Courtesy limit: 25,000 requests/day". Is this something different than the Geocoding API? Or can I somehow use my Google Maps API key with the Geocoding API so that I can potentially do more than 2500 requests per day?

回答1:


Yes it is by ip address.

25,000 is for map loads per day

2,500 is for geocodes per day

If you want more you need to get an account with them and last I checked it cost $10,000 to start.



来源:https://stackoverflow.com/questions/12500329/google-maps-geocode-api-how-to-access-with-your-api-key

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!