如何通过bing map API为bing map中的地址获取相同的地理代码?

时间:2017-06-07 10:06:12

标签: bing bing-api bing-maps

我有一个地址,在bingmap中显示正确的正确位置。当我使用非结构化URL API请求相同地址的地理代码时,它会发送不同的地理位置

地址: 86 Oakleaf Dr Meadow Valley,CA 95956 enter image description here

当我通过bing map api请求时

https://dev.virtualearth.net/REST/v1/Locations?CountryRegion=us&adminDistrict=CA&locality=Meadow%20Valley&postalCode=95956&addressLine=86%20Oakleaf%20Dr&output=json&key=BingmapKey

结果在这里

enter image description here

我错过了API请求中的任何内容吗? (我有有效的bing键)

2 个答案:

答案 0 :(得分:0)

action

你所拥有的似乎是对的,我刚刚在“Dr'并将其更改为您想要的正确位置。

答案 1 :(得分:0)

我更改了API调用 按地址 查找位置 按查询查找位置 ,它会发送相同的地理位置,当我们搜索地址时在bingmap网站上。

我无法在 按地址查找位置 API中找到其他解决方案。

var url = "https://dev.virtualearth.net/REST/v1/Locations?query=" 
+ encodeURIComponent('Oakleaf Dr Meadow Valley CA 95956 United States')
+ "&incl=queryParse"
+ "&output=json"
+ "&key=" + BingmapKey