2

我有这个谷歌地图代码行,我需要在必应地图中找到对应的代码

sb.Append("map.addOverlay(createMarker(new GLatLng(" + dataRow[7].ToString() + "," + dataRow[8].ToString() + "),");

我猜新的 GLatLng采用这两个值(数据行 7 和数据行 8)并将它们转换为 xy 值,如下所示:

 Ba: -78.624148
    x: -78.624148
    Xd: 35.727867
    y: 35.727867

我如何获取两个两个值并将它们转换为 XY 值以与 Bing 图钉一起使用,因为我不能使用 GLatLng 和 Bing。

注意:我正在将我们的地图从 google 转换为 Bing。

4

1 回答 1

1

必应地图使用 Microsoft.Maps.Location 来表示坐标。这是一个如何添加图钉的简单示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
   <head>
      <title>Add default pushpin</title>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script>
      <script type="text/javascript">
      var map = null;

      function getMap()
      {
        map = new Microsoft.Maps.Map(document.getElementById('myMap'), {credentials: 'Your Bing Maps Key'});
      }

      function addDefaultPushpin()
      {
        var pushpin= new Microsoft.Maps.Pushpin(map.getCenter(), null); 
        map.entities.push(pushpin);
      }
      </script>
   </head>
   <body onload="getMap();">
      <div id='myMap' style="position:relative; width:400px; height:400px;"></div>
      <div>
         <input type="button" value="AddDefaultPushpin" onclick="addDefaultPushpin();" />
      </div>
   </body>
</html>

您可以在此处找到有关 Bing 地图的完整文档:http: //msdn.microsoft.com/en-us/library/dd877180.aspx

于 2014-07-08T16:27:42.700 回答