MapRectangle Constructor (Double, Double, Double, Double) |
Initializes a new instance of the
MapRectangle class, by setting the boundaries directly. No checks are made
for avoiding a lower
east value compared to the
west value. The same is true for the
north/
south pair.
Namespace:
Ptv.XServer.Controls.Map
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public MapRectangle(
double west,
double east,
double south,
double north
)
Public Sub New (
west As Double,
east As Double,
south As Double,
north As Double
)
public:
MapRectangle(
double west,
double east,
double south,
double north
)
new :
west : float *
east : float *
south : float *
north : float -> MapRectangle
Parameters
- west
- Type: SystemDouble
West boundary. - east
- Type: SystemDouble
East boundary. - south
- Type: SystemDouble
South boundary. - north
- Type: SystemDouble
North boundary.
Remarks
The ordering of the parameters follows the scheme lower horizontal boundary - higher horizontal boundary -
lower vertical boundary - higher vertical boundary.
See Also