I want to get points of interest of a place / country via google places api say "points of interest in London". I want the results to be the same as google google, as [here] [1. I used something like this
'https://maps.googleapis.com/maps/api/place/radarsearch/json?location='+str(lat)+','+str(long)+'&radius=500&type=tourist&rankby=prominence&key=API_KEY')
where lat, long is the corresponding latitude, longitude of this place / country.
But the resulting json file does not extract the points of interest of this place, but simply displays neighboring places.
I also tried this
'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location='+str(lat)+','+str(long)+'&radius=500&type=tourist&&rankby=prominence&key=API_KEY'
who ended up in the same results
is it possible to do this without using the radius parameter
Please help me
source share