Open Pioneer Trails Packages
    Preparing search index...

    Interface WMSSublayerConfig

    Configuration options to construct the sublayers of a WMS layer.

    interface WMSSublayerConfig {
        attributes?: Record<string | symbol, unknown>;
        description?: string;
        id?: string;
        name?: string;
        sublayers?: WMSSublayerConfig[];
        title: string;
        visible?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes?: Record<string | symbol, unknown>

    Additional attributes for this layer. These can be arbitrary values.

    description?: string

    The human-readable description of this layer. Defaults to an empty string.

    id?: string

    The unique id of this layer. Defaults to a generated id.

    name?: string

    The name of the WMS sublayer in the service's capabilities. Not mandatory, e.g. for WMS group layer. See WMS spec.

    sublayers?: WMSSublayerConfig[]

    Configuration for nested sublayers.

    title: string

    The human-readable title of this layer.

    visible?: boolean

    Whether this layer should initially be visible. Defaults to true.