本節主要講解如何安裝ArcGIS Runtime SDK,以及移除註釋與水印。ide
附上ArcGIS Runtime SDK for .NET的官方操做手冊網址:https://developers.arcgis.com/net/latest/wpf/guide/install-the-sdk.htmui
1、項目添加ArcGIS Runtime SDK引用。spa
鼠標右鍵點擊項目,選擇「管理NuGet程序包」。rest
在「瀏覽」中輸入「Esri」,在列表中選中「Esri.ArcGISRuntime.WPF」進行安裝。code
2、在View中使用地圖。xml
在界面中添加引用 xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"後,就能夠直接使用地圖控件了。htm
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>
效果圖以下:blog
3、隱藏水印與註釋。get
從上述效果圖中咱們能夠看到,多了「Licensed For Developer Use Only」水印與底部註釋。io
設置MapView的屬性IsAttributionTextVisible= false,能夠將底部註釋隱藏。
而隱藏水印則須要進行受權。(受權方法我會抽時間更新)