Interface HonuaWmsSourceSpecification

A source backed by a first-party WMS 1.3.0 service.

URL format: https://host/rest/services/{serviceId}/MapServer/WMS.

interface HonuaWmsSourceSpecification {
    attribution?: string;
    crs?: string;
    format?: string;
    layers?: string;
    serviceId?: string;
    styles?: string;
    transparent?: boolean;
    type: "honua-wms";
    url: string;
}

Hierarchy (view full)

Properties

attribution?: string

Attribution string displayed on the map.

crs?: string

CRS code. Defaults to EPSG:3857.

format?: string

Image MIME type. Defaults to image/png.

layers?: string

Comma-separated layer names (the WMS LAYERS= value).

serviceId?: string

Service identifier, when not parseable from the URL.

styles?: string

Comma-separated style names (the WMS STYLES= value).

transparent?: boolean

Whether the rendered image should be transparent.

type
url: string

Full URL to the service endpoint.