Type Alias WMSFeatureProviderOptions

WMSFeatureProviderOptions: AbstractFeatureProviderOptions & {
    extent?: Extent | ExtentOptions;
    featureInfoFormat?: keyof typeof featureInfoFormat;
    formatOptions?: FormatOptions;
    maxLevel?: number;
    minLevel?: number;
    parameters: Record<string, string>;
    projection?: ProjectionOptions;
    responseType?: 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

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