8

任何人都可以指导如何从特定城市获取 POI 列表,例如艾哈迈达巴德。

得到查询https://maps.googleapis.com/maps/api/place/nearbysearch/xml?location=23.006000,72.601100&types=point_of_interest&radius=50000&sensor=false&key=YouAPIKey

“point_of_interest”已经提到他们提供但不确定如何

https://developers.google.com/places/documentation/supported_types

帮助将不胜感激

4

3 回答 3

4

您需要将任何一种受支持的类型传递给针对类型的查询。

将结果限制为与至少一种指定类型匹配的地点。类型应该用管道符号 (type1|type2|etc) 分隔。请参阅支持的类型列表。

https://developers.google.com/places/documentation/supported_types

于 2013-12-09T09:02:01.717 回答
0
https://maps.googleapis.com/maps/api/place/textsearch/json?query=places+in+'city'&key='APIKEY'

替换为您的城市和 API KEY。

于 2019-06-02T05:02:05.520 回答
0

我遇到了同样的问题,我已经尝试了有关如何使用地点 api 作为类型查找兴趣点的所有答案:现在允许 point_of interest

以下为我工作查询 todo+in+city 或 country

https://maps.googleapis.com/maps/api/place/textsearch/json?query=todo+in+India&key=yourkey

于 2019-06-14T06:55:17.800 回答