MonoTouch.Dialog.MapViewController._createMapView C# (CSharp) Method

_createMapView() private method

private _createMapView ( ) : MKMapView
return MKMapView
		private MKMapView _createMapView()
	    {
	        var map = new MKMapView()
	        {
	            Delegate = new MapViewDelegate(),
	            ZoomEnabled = true,
	            ScrollEnabled = true,
	            ShowsUserLocation = true,
	
	            MapType = MonoTouch.MapKit.MKMapType.Standard,
	
	            UserInteractionEnabled = true,
	            MultipleTouchEnabled = true,
	
	            ClearsContextBeforeDrawing = true,
	            ClipsToBounds = true,
	            AutosizesSubviews = true,
	        };
	
	        return map;
	    }