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

MapRegion() public method

Discribes a rectangular region. This region usually encloses a set of geometries or represents a area of view.
public MapRegion ( Position center, double width, double height ) : System
center Position Center of the bounding box
width double Width of bounding box in degress
height double Height of bounding box in degress
return System
        public MapRegion(Position center, double width, double height)
            : this(
                  center.Longitude - width/2, 
                  center.Latitude + height/2, 
                  center.Longitude + width/2,
                  center.Latitude - height/2)
        {
        }

Same methods

MapRegion::MapRegion ( Position topLeft, Position bottomRight ) : System
MapRegion::MapRegion ( double minX, double maxY, double maxX, double minY ) : System