@vcmap/core
    Preparing search index...

    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. do not provide this option AND a feature provider. this option will configure a layer specific WMSFeatureProvider. providing an attribute provider will create a composite feature provider.

    • 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'