ArcGISRuntimeXamarin.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);

            // Provide used Map to the MapView
            _myMapView.Map = myMap;
        }