Implementing MVVM with ArcGIS Runtime local server
问题 I am trying to setup a ESRI Local Server for displaying .mpk . I have a Model like public class Model { private string basemapLayerUri = "http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer"; private string mapPackage = "D:\\App\\Data\\Canada.mpk"; public Model() { } public string BasemapLayerUri { get { return this.basemapLayerUri; } set { if (value != this.basemapLayerUri) { this.basemapLayerUri = value; } } } public string MapPackage { get { return this