Type alias WMSFeatureProviderOptions

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

Type declaration

  • Optional extent?: Extent | ExtentOptions
  • Optional formatOptions?: FormatOptions

    format options for the GeojsonLayer, WfsLayer or GML format. To overwrite the gmlFormat option in WfsLayer format, use 'GML', 'GML2' or 'GML3' as string

  • Optional maxLevel?: number

    Default

    18
    
  • Optional minLevel?: number

    Default

    0
    
  • parameters: Record<string, string>
  • Optional projection?: ProjectionOptions

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

  • Optional responseType?: string

    the response type for the feature info

    Default

    'text/xml'
    
  • Optional tileSize?: Size

    Default

    [256, 256]
    
  • Optional tilingSchema?: TilingScheme

    Default

    {@link TilingScheme.GEOGRAPHIC}
    
  • url: string
  • Optional version?: string

    Default

    '1.1.1'
    

Generated using TypeDoc