Interface HonuaOgcTilesetMetadata

Metadata for a single tileset (a tile-matrix-set bound to a collection).

interface HonuaOgcTilesetMetadata {
    boundingBox?: {
        crs?: string;
        lowerLeft?: readonly number[];
        upperRight?: readonly number[];
    };
    cache?: HonuaCacheState;
    crs?: string;
    dataType?: OgcTileDataType;
    links?: HonuaOgcLink[];
    styles?: {
        id: string;
        title?: string;
    }[];
    tileMatrixSetId?: string;
    tileMatrixSetURI?: string;
}

Properties

boundingBox?: {
    crs?: string;
    lowerLeft?: readonly number[];
    upperRight?: readonly number[];
}

Optional explicit CRS for tile bounds, otherwise inferred from TMS.

crs?: string
dataType?: OgcTileDataType
links?: HonuaOgcLink[]
styles?: {
    id: string;
    title?: string;
}[]

Pre-baked styles available on the tileset (for styled-tile access).

tileMatrixSetId?: string
tileMatrixSetURI?: string