ArcGISRuntimeXamarin.Samples.AddGraphicsRenderer.AddGraphicsRenderer.Initialize C# (CSharp) 메소드

Initialize() 개인적인 메소드

private Initialize ( ) : void
리턴 void
        private void Initialize()
        {
            // Create a map with 'Imagery with Labels' basemap and an initial location
            Map myMap = new Map(BasemapType.ImageryWithLabels, 34.056295, -117.195800, 14);

            // Create graphics when MapView's viewpoint is initialized
            _myMapView.ViewpointChanged += OnViewpointChanged;

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