ConstructorOptions
Initialization options for the WebMapServiceImageryProvider constructor
See also
Properties
If true, WebMapServiceImageryProvider.pickFeatures will invoke the GetFeatureInfo operation on the WMS server and return the features included in the response. If false, WebMapServiceImageryProvider.pickFeatures will immediately return undefined (indicating no pickable features) without communicating with the server. Set this property to false if you know your WMS server does not support GetFeatureInfo or if you don't want this provider's features to be pickable. Note that this can be dynamically overridden by modifying the WebMapServiceImageryProvider#enablePickFeatures property. Default value - true
The formats in which to try WMS GetFeatureInfo requests. Default value - WebMapServiceImageryProvider.DefaultGetFeatureInfoFormats
Additional parameters to pass to the WMS server in the GetFeatureInfo URL. Default value - WebMapServiceImageryProvider.GetFeatureInfoDefaultParameters
The getFeatureInfo URL of the WMS service. If the property is not defined then we use the property value of url.
The maximum level-of-detail supported by the imagery provider, or undefined if there is no limit. If not specified, there is no limit.
The minimum level-of-detail supported by the imagery provider. Take care when specifying this that the number of tiles at the minimum level is small, such as four or less. A larger number is likely to result in rendering problems. Default value - 0
Additional parameters to pass to the WMS server in the GetMap URL. Default value - WebMapServiceImageryProvider.DefaultParameters
The rectangle of the layer. Default value - Rectangle.MAX_VALUE
The subdomains to use for the {s}
placeholder in the URL template. If this parameter is a single string, each character in the string is a subdomain. If it is an array, each element in the array is a subdomain. Default value - 'abc'
The height of each tile in pixels. Default value - 256
The tiling scheme to use to divide the world into tiles. Default value - GeographicTilingScheme()
TimeIntervalCollection with its data property being an object containing time dynamic dimension and their values.
The URL of the WMS service. The URL supports the same keywords as the UrlTemplateImageryProvider.