Type Alias WMSOptions

WMSOptions: RasterLayerOptions & {
    featureInfo?: Partial<WMSFeatureProviderOptions>;
    highResolution?: boolean;
    layers?: string;
    parameters?: Record<string, string> | string;
    singleImage2d?: boolean;
    tileSize?: Size;
    version?: string;
}

Type declaration

  • OptionalfeatureInfo?: Partial<WMSFeatureProviderOptions>

    whether this layer should send getFeatureInfo requests to the service when objects are clicked.

  • OptionalhighResolution?: boolean

    use higher resolution images (sofar only in 3D)

  • Optionallayers?: string

    string with comma separated names of the layers to display

  • Optionalparameters?: Record<string, string> | string

    key value pair of additional WMS parameters, url query notation possible

  • OptionalsingleImage2d?: boolean

    Use a single image in 2D

  • OptionaltileSize?: Size
    [256, 256]
    
  • Optionalversion?: string

    WMS version (either 1.1.1 (default) or 1.3.0)

    '1.1.1'