本节主要讲解如何安装ArcGIS Runtime SDK,以及移除界面多余元素。
附上ArcGIS Runtime SDK for .NET的官方操作手册网址:https://developers.arcgis.com/net/latest/wpf/guide/install-the-sdk.htm
一、项目添加ArcGIS Runtime SDK引用。
鼠标右键点击项目,选择“管理NuGet程序包”。
在“浏览”中输入“Esri”,在列表中选中“Esri.ArcGISRuntime.WPF”进行安装。
二、在View中使用地图。
在界面中添加引用 xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"后,就可以直接使用地图控件了。
1 <esri:MapView> 2 <esri:Map> 3 <!-- 用法一 --> 4 <!--<esri:ArcGISTiledLayer Source="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" />--> 5 6 <!-- 用法二 --> 7 <esri:Map.Basemap> 8 <esri:Basemap> 9 <esri:ArcGISTiledLayer Source="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" /> 10 </esri:Basemap> 11 </esri:Map.Basemap> 12 </esri:Map> 13 </esri:MapView>
效果图如下:
三、隐藏水印与注释。
从上述效果图中我们可以看到,多了“Licensed For Developer Use Only”水印与底部注释。
设置MapView的属性IsAttributionTextVisible= false,可以将底部注释隐藏。
而隐藏水印则需要进行认证。(认证方法我会抽时间更新)