一尘不染

使用Google Places API检索地点/国家/地区的景点(景点/景点)

json

我想通过Google Places API说“伦敦的景点”来检索某个地点/国家的景点。我希望搜索结果与Google在[[此处] [1。我用过这样的东西

'https://maps.googleapis.com/maps/api/place/radarsearch/json?location='+str(lat)+','+str(long)+'&radius=500&type=tourist&rankby=prominence&key=API_KEY')

纬度,经度分别是该地点/国家/地区的纬度,经度。

但是生成的json文件不会检索该位置的兴趣点,而是仅输出附近的位置。

我也尝试过

'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location='+str(lat)+','+str(long)+'&radius=500&type=tourist&&rankby=prominence&key=API_KEY'

最终得到相同的结果

有没有不用半径参数的选择

请帮我


阅读 291

收藏
2020-07-27

共1个答案

一尘不染

试试这个Google Places API网址。您将获得(例如:) 纽约市的* 景点/景点/旅游景点。您必须将“ 城市名称” 与关键字
“兴趣点” 一起使用
*

https://maps.googleapis.com/maps/api/place/textsearch/json?query=new+york+city+point+of+interest&language=en&key=API_KEY

这些API结果与以下google搜索结果的结果相同。

https://www.google.com/search?sclient=psy-
ab&site=&source=hp&btnG=Search&q=New+York+point+of+interest

2020-07-27