GeoLeaf Core API - v3.0.0
    Preparing search index...

    WMS (Web Map Service) configuration for basemaps with type: "wms". GeoLeaf builds a MapLibre raster source URL using {bbox-epsg-3857} templating. No network request is made at registration time.

    interface WmsConfig {
        url: string;
        layers: string;
        version?: string;
        crs?: string;
        format?: string;
        tileSize?: number;
        transparent?: boolean;
        styles?: string;
    }
    Index

    Properties

    url: string

    WMS service base URL (without query string). Required.

    layers: string

    Comma-separated WMS layer names. Required.

    version?: string

    WMS version string. Default: "1.3.0".

    crs?: string

    Coordinate reference system. Default: "EPSG:3857".

    format?: string

    Tile image MIME type. Default: "image/png".

    tileSize?: number

    Tile size in pixels. Default: 256.

    transparent?: boolean

    Request transparent background. Default: true.

    styles?: string

    Comma-separated style names. Default: "".