ArcGISRuntime.UWP.Samples.OpenExistingMap.OpenExistingMap.Initialize C# (CSharp) Метод

Initialize() приватный Метод

private Initialize ( ) : void
Результат void
        private void Initialize()
        {
            // Create a new Map instance with url of the webmap that is displayed by default
            Map myMap = new Map(new Uri(_itemURLs[0]));

            // Provide used Map to the MapView
            MyMapView.Map = myMap;
   
            // Set titles as a items source
            mapsChooser.ItemsSource = _titles;
        }