Click or drag to resize

QuantizedMeshTerrainProviderValidateTileCoordinates Method

Determines whether the given tile coordinates are valid, that is, whether the coordinates define a tile that could possibly exist, and throws an ArgumentOutOfRangeException if one of the coordinates is invalid. This method does not determine whether the tile actually exists.

Namespace:  AGI.Foundation.Terrain
Assembly:  AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static void ValidateTileCoordinates(
	int level,
	int x,
	int y
)

Parameters

level
Type: SystemInt32
The zoom level.
x
Type: SystemInt32
The X tile coordinate.
y
Type: SystemInt32
The Y tile coordinate.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown when the tile coordinates are invalid.
See Also