I need to access all sorts of map data through Google Maps and I'm trying to figure out how the quota's and installation works.
From the reading I've done, it seems that with JavaScript Maps API v3 (which allows for 25,000 requests per day) installed, I'll have access to the following 'sub API's' if you will.
Geocoding API | 2,500 requests per day
Geolocation API | 100 requests per day
Directions API | 2,500 requests per day
Places API | 1,000 requests per day
It looks like each will require an API key (including JavaScript Maps API v3), and each has it's own quota limit. It's laid out in a confusing way though. It seems that they can be access using the JavaScript Maps API v3 which has a 25,000 map load limit, or individually loaded.
If they are individually loaded, is that when the separate quota kicks in?
Note: I also found this page which states that
Applications that submit requests with an API key are allowed 1,000 requests per 24 hour period.
This throws another wrench into the whole thing and I'm really confused with all of this documentation. The bottom line is that I will need access to the above 5 bolded items. Is it as simple as just using JavaScript Maps API v3 to access the other 4, and all requests made will fall into the 25,000 request quota?
Any Google Map gurus out there?