QuantizedMeshTerrainProviderTileCoordinatesToExtent Method |
Gets the bounding extent of a tile with the given tile 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 static CartographicExtent TileCoordinatesToExtent(
int level,
int x,
int y
)
Public Shared Function TileCoordinatesToExtent (
level As Integer,
x As Integer,
y As Integer
) As CartographicExtent
public:
static CartographicExtent^ TileCoordinatesToExtent(
int level,
int x,
int y
)
static member TileCoordinatesToExtent :
level : int *
x : int *
y : int -> CartographicExtent
Parameters
- level
- Type: SystemInt32
The zoom level. - x
- Type: SystemInt32
The X tile coordinate. - y
- Type: SystemInt32
The Y tile coordinate.
Return Value
Type:
CartographicExtentThe extent that bounds the given tile.
Exceptions Remarks
The X coordinate increases from west to east, and the Y coordinate increases from south to north.
That is, the origin is in the south-west.
See Also