I want to retrieve points of interests of a place/country through google places api say \'points of interests in london\'. I want the results to be same as I google search
I worked on a project that made extensive use of this functionality. In the end, the best way to get attractions in a city was to use a query like:
https://maps.googleapis.com/maps/api/place/autocomplete/json?input=your-query-here&types=establishment&location=37.76999,-122.44696&radius=500&key=YOUR_API_KEY
If you want points of interest that aren't businesses, remove the types=establishment arg.