GeoLeaf Core API - v3.0.0
    Preparing search index...

    WMTS (Web Map Tile Service) configuration for basemaps with type: "wmts". GeoLeaf fetches the GetCapabilities XML, parses it, and builds an XYZ tile URL. The resolved URL is cached in memory for subsequent basemap activations.

    interface WmtsConfig {
        getCapabilitiesUrl: string;
        layer?: string;
        tileMatrixSet?: string;
        format?: string;
    }
    Index

    Properties

    getCapabilitiesUrl: string

    Full URL to the WMTS GetCapabilities XML document. Required.

    layer?: string

    Target WMTS layer identifier (value of <ows:Identifier>). Uses the first available layer when omitted.

    tileMatrixSet?: string

    Target TileMatrixSet identifier (e.g. "PM", "GoogleMapsCompatible"). Uses the first available TileMatrixSet when omitted.

    format?: string

    Tile image MIME type (e.g. "image/png", "image/jpeg"). Default: "image/png".