如何通过 bing 地图 API 为 bing 地图中的地址获取相同的地理代码?
how to get same geo code for an address which is in bing map through bing map API?
我有一个地址,它在 bing地图中显示了正确的位置。当我使用非结构化 URL API 请求同一地址的地理代码时,它会发送不同的地理位置
地址:
86 Oakleaf Dr Meadow Valley, CA 95956
当我通过 bing 地图请求时 api
这里是某处的结果
我是否遗漏了 API 请求中的任何内容? (我有有效的 bing 密钥)
https://dev.virtualearth.net/REST/v1/Locations?CountryRegion=us&adminDistrict=CA&locality=Meadow%20Valley&postalCode=95956&addressLine=86%20Oakleaf%20Dr.&output=json&key=BingMapsKey
你说的似乎是对的,我只是在 'Dr' 之后加了一个句号,它把它改成了你想要的正确位置。
我改变了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
我有一个地址,它在 bing地图中显示了正确的位置。当我使用非结构化 URL API 请求同一地址的地理代码时,它会发送不同的地理位置
地址:
86 Oakleaf Dr Meadow Valley, CA 95956
当我通过 bing 地图请求时 api
这里是某处的结果
我是否遗漏了 API 请求中的任何内容? (我有有效的 bing 密钥)
https://dev.virtualearth.net/REST/v1/Locations?CountryRegion=us&adminDistrict=CA&locality=Meadow%20Valley&postalCode=95956&addressLine=86%20Oakleaf%20Dr.&output=json&key=BingMapsKey
你说的似乎是对的,我只是在 'Dr' 之后加了一个句号,它把它改成了你想要的正确位置。
我改变了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