@camptocamp/inkmap
    Preparing search index...

    Interface WmtsLayer

    interface WmtsLayer {
        attribution?: string;
        format: string;
        layer: string;
        legend?: boolean;
        matrixSet: string;
        opacity: number;
        projection: string;
        requestEncoding: "KVP" | "REST";
        style: string;
        tileGrid: TileGrid;
        type: "WMTS";
        url: string;
    }
    Index

    Properties

    attribution?: string

    Attribution for the data used in the layer

    format: string

    Image format. Only used when requestEncoding is 'KVP'. eg image/png

    layer: string

    Layer name as advertised in the WMTS capabilities.

    legend?: boolean

    Whether a legend should be created for this layer.

    matrixSet: string

    Matrix set.

    opacity: number

    Opacity, from 0 (hidden) to 1 (visible)

    projection: string

    Projection expressed in a code, e.g. 'EPSG:4326'.

    requestEncoding: "KVP" | "REST"

    Request encoding; valid values are KVP, REST.

    style: string

    Style name as advertised in the WMTS capabilities.

    tileGrid: TileGrid

    Tile grid.

    type: "WMTS"
    url: string

    A URL for the service.