Cesium Utils - v0.2.6
    Preparing search index...

    Interface TerrainRegion

    Represents a terrain region with provider and geographic bounds.

    interface TerrainRegion {
        bounds?: Rectangle;
        levels?: number[];
        provider: TerrainProvider;
        tiles?: Map<
            number,
            { x: number
            | [number, number]; y: number | [number, number] },
        >;
    }
    Index

    Properties

    bounds?: Rectangle

    Rectangle-based geographic bounds (simpler).

    levels?: number[]

    Optional level constraints. If specified, region only applies to these levels.

    provider: TerrainProvider

    The terrain provider for this region.

    tiles?: Map<
        number,
        { x: number
        | [number, number]; y: number | [number, number] },
    >

    Tile-coordinate based bounds (precise control). Map of level to tile coordinate ranges for that level.