LuciadRIA (2026.0.04)
    Preparing search index...

    Represents a tile matrix.

    It specifies

    • how many tiles are defined within the matrix
    • how many pixels each tiles has

    2023.0

    interface TileMatrix {
        bounds: Bounds;
        tileColumnCount: number;
        tileHeight: number;
        tileRowCount: number;
        tileWidth: number;
    }

    Properties

    bounds: Bounds

    The spatial extent for this tile matrix. Must be the same as the coordinate reference of the RasterTileSetStructure.reference

    tileColumnCount: number

    The number of tile columns.

    tileHeight: number

    The height of each individual tile in pixels.

    tileRowCount: number

    The number of tile rows.

    tileWidth: number

    The width of each individual tile in pixels.