I was able to obtain the post office result by the Google Places API call below.
But, The third page does not have "next_page_token" tags, you can not retrieve the results following.
How can I get the more than 60 results after the fourth pages?.
I was able to obtain the post office result by the Google Places API call below.
But, The third page does not have "next_page_token" tags, you can not retrieve the results following.
How can I get the more than 60 results after the fourth pages?.
Contact Google sales to get a business license with higher usage limits.... or are you trying to scrape results?
Old question, but thought I'd point out Radar Search to get up to 200 places. The response just returns the place id, which you can then use to get the details.
Radar Search is deprecated as of June 30, 2017. This feature is turned down as of June 30, 2018.
@user1774357 I know this is old but I may help someone else.
I wrote this solution in ruby.
The image explains https://i.stack.imgur.com/RXVsY.jpg
Get the south west, and north east coordiate.
Then you will have to create the coordinates for a grid. For ruby I used the GeoPoint
gem. For a point I can say give me the coordinates 1km west of this point GeoPoint.new(point_1.destination_point(0, 1.0).to_dms)
Once you have the list of coordinates (from the grid) send them all one by one to Google Places to generate a list. In the image there's 20 points so I had to send 20 requests which took about 1 minute.
Merge the list and make sure they're unique.