interface WmsClientLayer {
    connection: {
        id: number;
    };
    imgformat: string;
    srs: {
        id: number;
    };
    vendor_params: Record<string, string>;
    wmslayers: string;
}

Properties

connection: {
    id: number;
}

WMS connection.

imgformat: string

Image format. Available values can fetched from WMS connection ('image/png').

srs: {
    id: number;
}
vendor_params: Record<string, string>

Additional parameters added to each request. This is key and value list.

wmslayers: string

String with layer identifiers separated with comma. Available layers can fetched from WMS connection.