7

我已经反向看到了这个概念的一些 jscript/jquery 实现,您可以在其中输入邮政编码并从 google maps api 获取 long/lat。

但是,就我而言,我已经有一组坐标,并且想知道当我们通过 jquery 提供经度/纬度时,是否可以从 API 动态获取文本城市状态结果?

谢谢!

4

1 回答 1

17

这是一个称为反向地理编码的过程,谷歌有相当广泛的文档。

一个例子是:

$.ajax({ url:'http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=true',
         success: function(data){
             alert(data.results[0].formatted_address);
             /*or you could iterate the components for only the city and state*/
         }
});
于 2012-11-17T06:27:39.223 回答