QuantizedMeshTileCoordinateExtent Constructor |
Initializes a new instance from the specified coordinates.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public QuantizedMeshTileCoordinateExtent(
int level,
int west,
int south,
int east,
int north
)
Public Sub New (
level As Integer,
west As Integer,
south As Integer,
east As Integer,
north As Integer
)
public:
QuantizedMeshTileCoordinateExtent(
int level,
int west,
int south,
int east,
int north
)
new :
level : int *
west : int *
south : int *
east : int *
north : int -> QuantizedMeshTileCoordinateExtent
Parameters
- level
- Type: SystemInt32
The zoom level. - west
- Type: SystemInt32
The westernmost X coordinate. - south
- Type: SystemInt32
The southernmost Y coordinate. - east
- Type: SystemInt32
The easternmost X coordinate. - north
- Type: SystemInt32
The northernmost Y coordinate.
Exceptions Exception | Condition |
---|
ArgumentException |
Thrown when the west is greater than the
east, or when the south is
greater than the north.
|
See Also