我正在寻找一种在进行反向地理编码时获取附近地址列表的方法。现在它只给我最近的屋顶,但我想要一些像附近地址的列表。
如果我可以指定要搜索的半径,那么如果我像/maps/api/geocode/json?latlng=40.732172,-73.994325&radius=1mile
那样做
我会得到类似的东西:
[
{
"address": "20 East 9th",
"distance": "0 feet",
......
},
{
"address": "21 East 9th",
"distance": "10 feet",
......
}
....
]
或者我可以改变的东西。
这可能吗?
答案 0 :(得分:0)
我不确定您的地址是什么意思,但您可以使用google places api(https://developers.google.com/places/documentation/search)获取附近地点的列表。
以下是来自google places api文档的示例请求:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food
如果你正在寻找一个点附近的所有地方,你可以使用谷歌地图雷达搜索 https://developers.google.com/maps/documentation/javascript/examples/place-radar-search