@vcmap/core
    Preparing search index...

    Type Alias WMSFeatureProviderOptions

    WMSFeatureProviderOptions: AbstractFeatureProviderOptions & {
        extent?: Extent | ExtentOptions;
        featureInfoFormat?: keyof typeof featureInfoFormat;
        formatOptions?: FormatOptions;
        headers?: Record<string, string>;
        htmlPositionFeatureTitle?: string;
        maxLevel?: number;
        minLevel?: number;
        parameters: Record<string, string>;
        projection?: ProjectionOptions;
        responseType?: string;
        textHTMLEvaluator?: string;
        tileSize?: Size;
        tilingSchema?: TilingScheme;
        url: string;
        version?: string;
        wfsGMLFormat?: keyof typeof gmlFormats;
    }

    Type Declaration

    • Optionalextent?: Extent | ExtentOptions
    • OptionalfeatureInfoFormat?: keyof typeof featureInfoFormat

      optional format to use to parse the feature info response, overriding the responseType to format mapping. Use 'GeoJSON', 'GML2', 'GML3', 'GML32', 'WMSGetFeatureInfo' or 'WFS' as string.

    • OptionalformatOptions?: FormatOptions

      format options forwarded to OpenLayers

    • Optionalheaders?: Record<string, string>

      Optional headers to include in GetFeatureInfo requests. Overrides layer headers.

    • OptionalhtmlPositionFeatureTitle?: string
    • OptionalmaxLevel?: number
      18
      
    • OptionalminLevel?: number
      0
      
    • parameters: Record<string, string>
    • Optionalprojection?: ProjectionOptions

      the projection of the data, if not encoded in the response

    • OptionalresponseType?: string

      the response type for the feature info

      'text/xml'
      
    • OptionaltextHTMLEvaluator?: string

      Optional RegExp string to evaluate text/html responses. If it matches the response, it will be treated as an empty response with no features.

    • OptionaltileSize?: Size
      [256, 256]
      
    • OptionaltilingSchema?: TilingScheme
    • url: string
    • Optionalversion?: string
      '1.1.1'
      
    • OptionalwfsGMLFormat?: keyof typeof gmlFormats

      optional GMLFormat for the WFS format to override the default GML2 format. Use 'GML', 'GML2', 'GML3' or 'GML32' as string