ArcGISRuntimeXamarin.Samples.FeatureLayerSelection.FeatureLayerSelection.CreateLayout C# (CSharp) 메소드

CreateLayout() 개인적인 메소드

private CreateLayout ( ) : void
리턴 void
        private void CreateLayout()
        {
            // Setup the visual frame for the MapView
            _myMapView = new MapView()
            {
                Frame = new CoreGraphics.CGRect(0, 0, View.Bounds.Width, View.Bounds.Height)
            };

            // Add MapView to the page
            View.AddSubviews(_myMapView);
        }
    }