fivenine.UnifiedMaps.MapRegion.Empty C# (CSharp) Method

Empty() public static method

Returns an empty map region.
public static Empty ( ) : MapRegion
return MapRegion
        public static MapRegion Empty() => new MapRegion(0, 0, 0, 0);

Usage Example

Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="PolylineOverlay"/> class.
        /// </summary>
        public PolylineOverlay()
        {
            _items = new LinkedList <Position>();

            _boundingBox = MapRegion.Empty();

            // Defaults
            LineWidth   = 1.0f;
            StrokeColor = Color.Blue;
        }
All Usage Examples Of fivenine.UnifiedMaps.MapRegion::Empty