ArcGISRuntime.UWP.Samples.SetInitialMapLocation.SetInitialMapLocation.Initialize C# (CSharp) Method

Initialize() private method

private Initialize ( ) : void
return void
        private void Initialize()
        {
            // Create a map with 'Imagery with Labels' basemap and an initial location
            Map myMap = new Map(BasemapType.ImageryWithLabels, -33.867886, -63.985, 16);

            // Assign the map to the MapView
            MyMapView.Map = myMap;
        }
    }