Can you insert our user data on places in google places api?

Many of you have been working on the LBS application in android, and have also used the Google Places API web service for information from different places. And you also noticed that the data for India are not particularly accurate, which means that many of the places that you know are not on the map.

So my question is, can you add your database to the Google Places API web service as XML / JSON? If so, please let me know how this is possible.

We have a great day!

+4
source share
2 answers

Places to add queries :

Post report requests are used to add new places or delete existing ones. New places will be available immediately in the Search for places initiated by your application and will be included in the moderation queue, which will be considered for Google Maps. A recently added place will not be available for other applications until it is approved by the moderation process.

Places added by your application can also be deleted until they are moderated. After moderation and adding to the results of a complete search for a place, Place can no longer be deleted. Places that are not accepted by the moderation process will remain visible to the application that sent them.


POST https://maps.googleapis.com/maps/api/place/add/json?sensor=true_or_false&key=api_key HTTP/1.1 Host: maps.googleapis.com { "location": { "lat": -33.8669710, "lng": 151.1958750 }, "accuracy": 50, "name": "Google Shoes!", "types": ["shoe_store"], "language": "en-AU" } 
+4
source

(from: Google Places API: add privacy place )

Adding a place is deprecated on June 30, 2017 and will stop working on June 30, 2018. Therefore, you can no longer use this method. For more information, please refer to the corresponding post .

0
source

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


All Articles