我有这个谷歌地图代码行,我需要在Bing地图中找到相应的代码
sb.Append("map.addOverlay(createMarker(new GLatLng(" + dataRow[7].ToString() + "," + dataRow[8].ToString() + "),");
我想新GLatLng 取这两个值(datarow 7和datarow 8)并将它们转换为xy值,如下所示:
Ba: -78.624148
x: -78.624148
Xd: 35.727867
y: 35.727867
我如何获取两个值并将它们转换为XY值,并将其与Bing Pushpin一起使用,因为我无法使用GLatLng和Bing。
注意:我正在将我们的地图从谷歌转换为Bing。
答案 0 :(得分:0)
Bing Maps使用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