如何从BING map api获得经度和纬度的地址(城市,州,国家,邮政编码)?

时间:2010-12-28 03:41:31

标签: jquery bing-maps

如何从经度和纬度获取BING map api的地址(城市,州,国家,邮政编码)?

2 个答案:

答案 0 :(得分:2)

您可以使用Bing Maps REST Services

对于您的情况,您在此页面中有信息:Find a Location by Point

一个例子是:http://dev.virtualearth.net/REST/v1/Locations/47.64054,-122.12934?o=xml&key=BingMapsKey

使用jquery是这样的:

$.ajax({
    url: 'http://dev.virtualearth.net/REST/v1/Locations/' + latitude + ',' + longitude,
    data: {
        o: 'xml',
        key: BingMapsKey
    },
    jsonp: "jsonp",
    success: function (data) {
        //Process the result
    },
    error: function(){
        //Process the error
    }
});

答案 1 :(得分:1)

Shaulin - 你正在尝试做反转地理编码"。您是否尝试使用描述in the Bing Map Geocode Service API docs

的bing api

希望这有帮助(如果没有,也许你可以更具体地提出这个问题)。至少,搜索"反向地理编码bing map"会有所帮助。

祝你好运, 丹尼斯