@camptocamp/inkmap
    Preparing search index...

    Interface WmsLayer

    interface WmsLayer {
        attribution?: string;
        customParams?: any;
        layer: string;
        legend?: boolean;
        opacity: number;
        projection?: string;
        tiled?: boolean;
        type: "WMS";
        url: string;
        version: string;
    }
    Index

    Properties

    attribution?: string

    Attribution for the data used in the layer

    customParams?: any

    Custom parameters added to GetMap requests

    layer: string

    Layer name.

    legend?: boolean

    Whether a legend should be created for this layer.

    opacity: number

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

    projection?: string

    Projection string if defined else undefined

    tiled?: boolean

    Whether the WMS layer should be requested as tiles.

    type: "WMS"
    url: string
    version: string

    Version of WMS protocol used: 1.1.1 or 1.3.0 (default).