使用Bing Map API地址编码
最近在使用Bing Map API进行逆地址编码,传入经纬度,返回详细地址,官方链接:https://docs.microsoft.com/en-us/bingmaps/rest-services/locations/find-a-location-by-point
http://dev.virtualearth.net/REST/v1/Locations/{Lat, Long}?includeEntityTypes=Address&key={BingMapsKey}
BingMapsKey:API KEY
Lat:纬度
Long:经度
但是默认返回的是英语,如果需要返回中文,需要在链接后面再加上&c=zh-Hans,https://docs.microsoft.com/en-us/bingmaps/getting-started/bing-maps-api-best-practices?redirectedfrom=MSDN
0