如何从Google地图的经纬度获取地址位置?

所以我有经纬度44.46474527.3553838 。 我需要得到如下地址:米兰,意大利,海峡。 肯尼迪89。

我怎么能做到这一点?

简单地尝试将你的经纬度传递给下面的查询string,你将得到一个json数组,从那里获取你的城市

http://maps.googleapis.com/maps/api/geocode/json?latlng=44.4647452,7.3553838&sensor=true

你想要的是反向地理编码。 看看这个例子在这里。 https://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse

您必须进行一次ajax调用才能获得所需的结果,在这种情况下,您可以使用Google API来获得相同的结果

 http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=true/false 

build立这种types的url,并用你想要的那个replace掉。 做的调用和响应将在JSON,parsingJSON,你会得到完整的地址,直到街道级别