Click or drag to resize

QuantizedMeshTilesetMetadata Constructor

Initializes a new instance.

Namespace:  AGI.Foundation.Terrain
Assembly:  AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public QuantizedMeshTilesetMetadata(
	CartographicExtent bounds,
	int minimumZoom,
	int maximumZoom,
	List<List<QuantizedMeshTileRange>> availableTiles
)

Parameters

bounds
Type: AGI.Foundation.Coordinates.CartographicExtent
The bounds of the tileset.
minimumZoom
Type: System.Int32
The minimum zoom level of the tileset.
maximumZoom
Type: System.Int32
The maximum zoom level of the tileset.
availableTiles
Type: System.Collections.Generic.List<List<QuantizedMeshTileRange>>
The available tiles in the tileset. For each zoom level, the corresponding index in the list must contain a list of tile ranges are available.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when bounds or availableTiles is null.
See Also