Interface OgcTileRequest

Request envelope for fetching a single tile.

interface OgcTileRequest {
    accept?: string;
    basePath?: string;
    collectionId: string | number;
    extraParams?: Record<string, string | number | boolean>;
    signal?: AbortSignal;
    tileCol: number;
    tileMatrix: string | number;
    tileMatrixSetId: string;
    tileRow: number;
}

Properties

accept?: string

Accept header (application/vnd.mapbox-vector-tile, image/png, …).

basePath?: string

Raw endpoint path prefix (defaults to the Honua facade /ogc/tiles). A raw third-party OGC API Tiles service root discovered by connect() threads its service-root path here so the tile route resolves against the advertised layout instead of the facade.

collectionId: string | number
extraParams?: Record<string, string | number | boolean>
signal?: AbortSignal
tileCol: number
tileMatrix: string | number
tileMatrixSetId: string
tileRow: number