0
有没有办法来告诉WPF WebBrowser
到WPF web浏览器+ BingMaps +鸟瞰
- 导航到Bing地图页面
- 设置具体的地理位置(纬度,经度)和鸟瞰图;
- 使页面显示全屏
我已经采取了看看Bing地图页面Create a Custom Map URL
,但我不能让它在WPF工作。
有没有办法来告诉WPF WebBrowser
到WPF web浏览器+ BingMaps +鸟瞰
我已经采取了看看Bing地图页面Create a Custom Map URL
,但我不能让它在WPF工作。
您将需要使用Bing Maps API来执行此操作,而不是Bing Maps使用者网站。如果您创建了一个基本网页,然后您可以将其托管在WebBrowser控件的内部,并创建一个互操作将命令传递给C#中的页面。例如:http://ayende.com/blog/4366/wpf-webbrowser-and-javascript-interaction
下面是一个简单的网页,可以作为一个起点:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Map with birds eye view</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', center: new Microsoft.Maps.Location(47.6215, -122.349329), mapTypeId: Microsoft.Maps.MapTypeId.birdseye, zoom: 18});
}
function setView(latitude, longitude, zoom){
map.setView({center:new Microsoft.Maps.Location(latutude, longitude), zoom: zoom});
}
</script>
</head>
<body onload="getMap();">
<div id='myMap' style="position:relative; width:400px; height:400px;"></div>
</body>
</html>