Google地图获取Point of intrest列表

时间:2018-04-13 05:54:40

标签: google-maps google-maps-api-3 maps

在请求在Google地图的API中获取point of interests时,我只能从任何区域或任何Lat,Long获得20个结果。 如何获取Point of interests

的所有列表

Get Point Of Intrest

1 个答案:

答案 0 :(得分:4)

正如accessing additional results上的Places API文档中所述,搜索或文本搜索附近的位置每个查询最多可返回20个结果,但每个搜索请求最多可包含60个结果,分为3个页面。

如果结果超过20个,则响应中的值为next_page_token。提交将next_page_token传递给pagetoken参数的新查询,以获得接下来的20个结果。像

https://maps.googleapis.com/maps/api/place/nearbysearch/json?pagetoken=[next_page_token from previous query here]&key=YOUR_API_KEY

关于获得超过60个结果

此处issuetracker表示由于技术问题而无法将API转变为数据库。