使用 Bing 地图进行地理编码 - 不使用 VEMap

发布于 2024-12-04 05:37:08 字数 693 浏览 2 评论 0原文

我想知道是否可以使用 Bing Maps API 以批处理方式执行地理编码(根据邮政编码或地址获取长/纬度),或者至少不必使用每个地理编码渲染地图。使用 google 地图 API,过程如下所示

var geocoder=new google.maps.Geocoder();        
    geocoder.geocode({ 'address': pCodes[counter-1] }, function (results, status) {                
       if (status == google.maps.GeocoderStatus.OK){
          var pcode = results[0].address_components[0].long_name;
          var lat = results[0].geometry.location.lat();
          var lon = results[0].geometry.location.lng();                   
              // do something with results
       }
       else  {
             // error condition    
       }
    }); 

使用 Bing VEMap 地图类,看起来地图和地理编码绑定在一起。

I am wondering if it possible to use Bing Maps API to perform geocoding (get long/lat based on Postal Code or address) as a batch process or at least without having to render a map with each geocode. With google maps API, the process looks like this

var geocoder=new google.maps.Geocoder();        
    geocoder.geocode({ 'address': pCodes[counter-1] }, function (results, status) {                
       if (status == google.maps.GeocoderStatus.OK){
          var pcode = results[0].address_components[0].long_name;
          var lat = results[0].geometry.location.lat();
          var lon = results[0].geometry.location.lng();                   
              // do something with results
       }
       else  {
             // error condition    
       }
    }); 

With Bing the VEMap map class, it looks like map and geocoding are bound together.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

徒留西风 2024-12-11 05:37:08

你是对的,VEMap 是用来显示地图的。

如果您只需要位置数据,可以调用基于 Bing 地图 REST 的位置 API。

您可以在 MSDN 上找到有关 API 的更多信息:http://msdn.microsoft。 com/en-us/library/ff701714.aspx

You are correct, the VEMap is for displaying maps.

If you just want location data, you can call the Bing Maps REST based Location API.

You can find out more about the API on MSDN at http://msdn.microsoft.com/en-us/library/ff701714.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文