在请求在Google地图的API中获取point of interests
时,我只能从任何区域或任何Lat,Long获得20个结果。
如何获取Point of interests
答案 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转变为数据库。