1. 注册地图:
在使用地图之前必须先申请register key https://www.bingmapsportal.com/
将申请到的key填到这个属性,地图才可以正常使用。
CredentialsProvider 属性:填写申请到的Register key。
2.设置中心点:
<my:Map Height=”607″ Mode=”Aerial” HorizontalAlignment=”Left” Name=”map1″ VerticalAlignment=”Top” Width=”468″ CredentialsProvider=”申请的map id号 ” ZoomBarVisibility=”Visible” ScaleVisibility=”Collapsed” Center=”30.259497,120.129798″ ZoomLevel=”15″/>
也可以用代码来实现
map1.Center = new GeoCoordinate(30.259497,120.129798);
map1.ZoomLevel = 15;
3.显示模式设置
Mode 属性:Road、Aerial,可以设置两种显示方式。
Aerial显示模式
Road显示模式
4.显示缩放按钮:
ZoomBarVisibility 属性:Visible、Collapsed。
5.比例尺显示:
ScaleVisibility 属性:Visible、Collapsed。
示例下载:http://www.daisy123.com/?page_id=275 map控件