Google Places Library and Places API

What is the difference between the Google Places library and the Google Places API? I see that with the API, the search limit for a 24-hour period is 100,000 searches, where the library has a limit on the user, not the API key. Can I use the place library in an Android app?

+4
source share
2 answers

The Google Places Library is part of the Google Maps v3 Javascript API, intended for use in applications that use this.

The Google Places API is a web service.

+2
source
I recently found out that you want to use the Google Places API if you want to do more than just request information about places, for example, add new places to the map database. the limit is 1000 / day for each application key.

The google places library is what you use when you just want to query existing places. the limit is 25,000 / day per user.

0
source

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


All Articles