MapProjectionGetDefaultArea Method |
Function that returns the default area in map projection coordinates of the projection.
The default area is the area where the projection is ment to be used and where
it is accurate. It is not recommended to use the map projection outside its
default area.
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public void GetDefaultArea(
out double x0,
out double y0,
out double x1,
out double y1
)
Public Sub GetDefaultArea (
<OutAttribute> ByRef x0 As Double,
<OutAttribute> ByRef y0 As Double,
<OutAttribute> ByRef x1 As Double,
<OutAttribute> ByRef y1 As Double
)
public:
void GetDefaultArea(
[OutAttribute] double% x0,
[OutAttribute] double% y0,
[OutAttribute] double% x1,
[OutAttribute] double% y1
)
member GetDefaultArea :
x0 : float byref *
y0 : float byref *
x1 : float byref *
y1 : float byref -> unit
Parameters
- x0
- Type: SystemDouble
the x-coordinate of the lower lefthand corner - y0
- Type: SystemDouble
the y-coordinate of the lower lefthand corner - x1
- Type: SystemDouble
the x-coordinate of the upper righthand corner - y1
- Type: SystemDouble
the y-coordinate of the upper righthand corner
See Also