new ImageWMS(opt_options)
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
ImageWMS options.
|
Fires:
-
imageloadend
- Triggered when an image finishes loading. -
imageloaderror
- Triggered if image loading results in an error. -
imageloadstart
- Triggered when an image starts loading.
Methods
-
getGetFeatureInfoUrl(coordinate, resolution, projection, params){string|undefined}
source/ImageWMS.js, line 160 -
Return the GetFeatureInfo URL for the passed coordinate, resolution, and projection. Return
undefined
if the GetFeatureInfo URL cannot be constructed.Name Type Description coordinate
module:ol/coordinate~Coordinate Coordinate.
resolution
number Resolution.
projection
module:ol/proj~ProjectionLike Projection.
params
Object GetFeatureInfo params.
INFO_FORMAT
at least should be provided. IfQUERY_LAYERS
is not provided then the layers specified in theLAYERS
parameter will be used.VERSION
should not be specified here.Returns:
GetFeatureInfo URL.
-
Return the image load function of the source.
Returns:
The image load function.
-
getParams(){Object}
source/ImageWMS.js, line 201 -
Get the user-provided params, i.e. those passed to the constructor through the "params" option, and possibly updated using the updateParams method.
Returns:
Params.
-
getUrl(){string|undefined}
source/ImageWMS.js, line 339 -
Return the URL used for this WMS source.
Returns:
URL.
-
setImageLoadFunction(imageLoadFunction)
source/ImageWMS.js, line 348 -
Set the image load function of the source.
Name Type Description imageLoadFunction
module:ol/Image~LoadFunction Image load function.
-
setUrl(url)
source/ImageWMS.js, line 359 -
Set the URL to use for requests.
Name Type Description url
string | undefined URL.
-
updateParams(params)
source/ImageWMS.js, line 372 -
Update the user-provided params.
Name Type Description params
Object Params.