interface WMSLayer {
    getData: boolean;
    name: string;
    queryable: boolean;
}

Properties

getData: boolean

If the layer is queryable and this property is set to false, then the layer won't be used in queries issued. Defaults to true.

name: string

The layer name (WMS) and/or feature type name (WFS)

queryable: boolean

Whether the the layer is queryable or not. Defaults to false.