Type Alias RasterRequestBinding

RasterRequestBinding: {
    format: string;
    kind: "wms-kvp";
    url: string;
} | {
    format: string;
    kind: "wmts-kvp" | "wmts-template";
    tileMatrixTemplate: string;
    url: string;
}

Validated raster request binding selected during WMS / WMTS discovery.

The binding keeps the service identity in SourceLocator.url while carrying the exact same-origin operation URL or ResourceURL template that the existing MapLibre raster projection must execute. Callers constructing descriptors manually may omit it and retain the canonical Honua endpoint conventions.

Type declaration

  • Readonlyformat: string
  • Readonlykind: "wmts-kvp" | "wmts-template"
  • ReadonlytileMatrixTemplate: string

    Exact matrix identifier pattern, with {z} as the MapLibre zoom token.

  • Readonlyurl: string