You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
491 lines
14 KiB
491 lines
14 KiB
/**
|
|
* @module ol/source/ImageWMS
|
|
*/
|
|
|
|
import EventType from '../events/EventType.js';
|
|
import ImageSource, {defaultImageLoadFunction} from './Image.js';
|
|
import ImageWrapper from '../Image.js';
|
|
import {DEFAULT_VERSION} from './wms.js';
|
|
import {appendParams} from '../uri.js';
|
|
import {assert} from '../asserts.js';
|
|
import {calculateSourceResolution} from '../reproj.js';
|
|
import {ceil, floor, round} from '../math.js';
|
|
import {compareVersions} from '../string.js';
|
|
import {
|
|
containsExtent,
|
|
getCenter,
|
|
getForViewAndSize,
|
|
getHeight,
|
|
getWidth,
|
|
} from '../extent.js';
|
|
import {get as getProjection, transform} from '../proj.js';
|
|
|
|
/**
|
|
* Number of decimal digits to consider in integer values when rounding.
|
|
* @type {number}
|
|
*/
|
|
const DECIMALS = 4;
|
|
|
|
/**
|
|
* @const
|
|
* @type {import("../size.js").Size}
|
|
*/
|
|
const GETFEATUREINFO_IMAGE_SIZE = [101, 101];
|
|
|
|
/**
|
|
* @typedef {Object} Options
|
|
* @property {import("./Source.js").AttributionLike} [attributions] Attributions.
|
|
* @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that
|
|
* you must provide a `crossOrigin` value if you want to access pixel data with the Canvas renderer.
|
|
* See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.
|
|
* @property {boolean} [hidpi=true] Use the `ol/Map#pixelRatio` value when requesting
|
|
* the image from the remote server.
|
|
* @property {import("./wms.js").ServerType} [serverType] The type of
|
|
* the remote WMS server: `mapserver`, `geoserver`, `carmentaserver`, or `qgis`.
|
|
* Only needed if `hidpi` is `true`.
|
|
* @property {import("../Image.js").LoadFunction} [imageLoadFunction] Optional function to load an image given a URL.
|
|
* @property {boolean} [interpolate=true] Use interpolated values when resampling. By default,
|
|
* linear interpolation is used when resampling. Set to false to use the nearest neighbor instead.
|
|
* @property {Object<string,*>} [params] WMS request parameters.
|
|
* At least a `LAYERS` param is required. `STYLES` is
|
|
* `''` by default. `VERSION` is `1.3.0` by default. `WIDTH`, `HEIGHT`, `BBOX`
|
|
* and `CRS` (`SRS` for WMS version < 1.3.0) will be set dynamically.
|
|
* @property {import("../proj.js").ProjectionLike} [projection] Projection. Default is the view projection.
|
|
* @property {number} [ratio=1.5] Ratio. `1` means image requests are the size of the map viewport, `2` means
|
|
* twice the width and height of the map viewport, and so on. Must be `1` or
|
|
* higher.
|
|
* @property {Array<number>} [resolutions] Resolutions.
|
|
* If specified, requests will be made for these resolutions only.
|
|
* @property {string} [url] WMS service URL.
|
|
*/
|
|
|
|
/**
|
|
* @classdesc
|
|
* Source for WMS servers providing single, untiled images.
|
|
*
|
|
* @fires module:ol/source/Image.ImageSourceEvent
|
|
* @api
|
|
*/
|
|
class ImageWMS extends ImageSource {
|
|
/**
|
|
* @param {Options} [options] ImageWMS options.
|
|
*/
|
|
constructor(options) {
|
|
options = options ? options : {};
|
|
|
|
super({
|
|
attributions: options.attributions,
|
|
interpolate: options.interpolate,
|
|
projection: options.projection,
|
|
resolutions: options.resolutions,
|
|
});
|
|
|
|
/**
|
|
* @private
|
|
* @type {?string}
|
|
*/
|
|
this.crossOrigin_ =
|
|
options.crossOrigin !== undefined ? options.crossOrigin : null;
|
|
|
|
/**
|
|
* @private
|
|
* @type {string|undefined}
|
|
*/
|
|
this.url_ = options.url;
|
|
|
|
/**
|
|
* @private
|
|
* @type {import("../Image.js").LoadFunction}
|
|
*/
|
|
this.imageLoadFunction_ =
|
|
options.imageLoadFunction !== undefined
|
|
? options.imageLoadFunction
|
|
: defaultImageLoadFunction;
|
|
|
|
/**
|
|
* @private
|
|
* @type {!Object}
|
|
*/
|
|
this.params_ = Object.assign({}, options.params);
|
|
|
|
/**
|
|
* @private
|
|
* @type {boolean}
|
|
*/
|
|
this.v13_ = true;
|
|
this.updateV13_();
|
|
|
|
/**
|
|
* @private
|
|
* @type {import("./wms.js").ServerType}
|
|
*/
|
|
this.serverType_ = options.serverType;
|
|
|
|
/**
|
|
* @private
|
|
* @type {boolean}
|
|
*/
|
|
this.hidpi_ = options.hidpi !== undefined ? options.hidpi : true;
|
|
|
|
/**
|
|
* @private
|
|
* @type {import("../Image.js").default}
|
|
*/
|
|
this.image_ = null;
|
|
|
|
/**
|
|
* @private
|
|
* @type {import("../size.js").Size}
|
|
*/
|
|
this.imageSize_ = [0, 0];
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.renderedRevision_ = 0;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.ratio_ = options.ratio !== undefined ? options.ratio : 1.5;
|
|
}
|
|
|
|
/**
|
|
* Return the GetFeatureInfo URL for the passed coordinate, resolution, and
|
|
* projection. Return `undefined` if the GetFeatureInfo URL cannot be
|
|
* constructed.
|
|
* @param {import("../coordinate.js").Coordinate} coordinate Coordinate.
|
|
* @param {number} resolution Resolution.
|
|
* @param {import("../proj.js").ProjectionLike} projection Projection.
|
|
* @param {!Object} params GetFeatureInfo params. `INFO_FORMAT` at least should
|
|
* be provided. If `QUERY_LAYERS` is not provided then the layers specified
|
|
* in the `LAYERS` parameter will be used. `VERSION` should not be
|
|
* specified here.
|
|
* @return {string|undefined} GetFeatureInfo URL.
|
|
* @api
|
|
*/
|
|
getFeatureInfoUrl(coordinate, resolution, projection, params) {
|
|
if (this.url_ === undefined) {
|
|
return undefined;
|
|
}
|
|
const projectionObj = getProjection(projection);
|
|
const sourceProjectionObj = this.getProjection();
|
|
|
|
if (sourceProjectionObj && sourceProjectionObj !== projectionObj) {
|
|
resolution = calculateSourceResolution(
|
|
sourceProjectionObj,
|
|
projectionObj,
|
|
coordinate,
|
|
resolution
|
|
);
|
|
coordinate = transform(coordinate, projectionObj, sourceProjectionObj);
|
|
}
|
|
|
|
const extent = getForViewAndSize(
|
|
coordinate,
|
|
resolution,
|
|
0,
|
|
GETFEATUREINFO_IMAGE_SIZE
|
|
);
|
|
|
|
const baseParams = {
|
|
'SERVICE': 'WMS',
|
|
'VERSION': DEFAULT_VERSION,
|
|
'REQUEST': 'GetFeatureInfo',
|
|
'FORMAT': 'image/png',
|
|
'TRANSPARENT': true,
|
|
'QUERY_LAYERS': this.params_['LAYERS'],
|
|
};
|
|
Object.assign(baseParams, this.params_, params);
|
|
|
|
const x = floor((coordinate[0] - extent[0]) / resolution, DECIMALS);
|
|
const y = floor((extent[3] - coordinate[1]) / resolution, DECIMALS);
|
|
baseParams[this.v13_ ? 'I' : 'X'] = x;
|
|
baseParams[this.v13_ ? 'J' : 'Y'] = y;
|
|
|
|
return this.getRequestUrl_(
|
|
extent,
|
|
GETFEATUREINFO_IMAGE_SIZE,
|
|
1,
|
|
sourceProjectionObj || projectionObj,
|
|
baseParams
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Return the GetLegendGraphic URL, optionally optimized for the passed
|
|
* resolution and possibly including any passed specific parameters. Returns
|
|
* `undefined` if the GetLegendGraphic URL cannot be constructed.
|
|
*
|
|
* @param {number} [resolution] Resolution. If set to undefined, `SCALE`
|
|
* will not be calculated and included in URL.
|
|
* @param {Object} [params] GetLegendGraphic params. If `LAYER` is set, the
|
|
* request is generated for this wms layer, else it will try to use the
|
|
* configured wms layer. Default `FORMAT` is `image/png`.
|
|
* `VERSION` should not be specified here.
|
|
* @return {string|undefined} GetLegendGraphic URL.
|
|
* @api
|
|
*/
|
|
getLegendUrl(resolution, params) {
|
|
if (this.url_ === undefined) {
|
|
return undefined;
|
|
}
|
|
|
|
const baseParams = {
|
|
'SERVICE': 'WMS',
|
|
'VERSION': DEFAULT_VERSION,
|
|
'REQUEST': 'GetLegendGraphic',
|
|
'FORMAT': 'image/png',
|
|
};
|
|
|
|
if (params === undefined || params['LAYER'] === undefined) {
|
|
const layers = this.params_.LAYERS;
|
|
const isSingleLayer = !Array.isArray(layers) || layers.length === 1;
|
|
if (!isSingleLayer) {
|
|
return undefined;
|
|
}
|
|
baseParams['LAYER'] = layers;
|
|
}
|
|
|
|
if (resolution !== undefined) {
|
|
const mpu = this.getProjection()
|
|
? this.getProjection().getMetersPerUnit()
|
|
: 1;
|
|
const pixelSize = 0.00028;
|
|
baseParams['SCALE'] = (resolution * mpu) / pixelSize;
|
|
}
|
|
|
|
Object.assign(baseParams, params);
|
|
|
|
return appendParams(/** @type {string} */ (this.url_), baseParams);
|
|
}
|
|
|
|
/**
|
|
* Get the user-provided params, i.e. those passed to the constructor through
|
|
* the "params" option, and possibly updated using the updateParams method.
|
|
* @return {Object} Params.
|
|
* @api
|
|
*/
|
|
getParams() {
|
|
return this.params_;
|
|
}
|
|
|
|
/**
|
|
* @param {import("../extent.js").Extent} extent Extent.
|
|
* @param {number} resolution Resolution.
|
|
* @param {number} pixelRatio Pixel ratio.
|
|
* @param {import("../proj/Projection.js").default} projection Projection.
|
|
* @return {import("../Image.js").default} Single image.
|
|
*/
|
|
getImageInternal(extent, resolution, pixelRatio, projection) {
|
|
if (this.url_ === undefined) {
|
|
return null;
|
|
}
|
|
|
|
resolution = this.findNearestResolution(resolution);
|
|
|
|
if (pixelRatio != 1 && (!this.hidpi_ || this.serverType_ === undefined)) {
|
|
pixelRatio = 1;
|
|
}
|
|
|
|
const imageResolution = resolution / pixelRatio;
|
|
|
|
const center = getCenter(extent);
|
|
const viewWidth = ceil(getWidth(extent) / imageResolution, DECIMALS);
|
|
const viewHeight = ceil(getHeight(extent) / imageResolution, DECIMALS);
|
|
const viewExtent = getForViewAndSize(center, imageResolution, 0, [
|
|
viewWidth,
|
|
viewHeight,
|
|
]);
|
|
const requestWidth = ceil(
|
|
(this.ratio_ * getWidth(extent)) / imageResolution,
|
|
DECIMALS
|
|
);
|
|
const requestHeight = ceil(
|
|
(this.ratio_ * getHeight(extent)) / imageResolution,
|
|
DECIMALS
|
|
);
|
|
const requestExtent = getForViewAndSize(center, imageResolution, 0, [
|
|
requestWidth,
|
|
requestHeight,
|
|
]);
|
|
|
|
const image = this.image_;
|
|
if (
|
|
image &&
|
|
this.renderedRevision_ == this.getRevision() &&
|
|
image.getResolution() == resolution &&
|
|
image.getPixelRatio() == pixelRatio &&
|
|
containsExtent(image.getExtent(), viewExtent)
|
|
) {
|
|
return image;
|
|
}
|
|
|
|
const params = {
|
|
'SERVICE': 'WMS',
|
|
'VERSION': DEFAULT_VERSION,
|
|
'REQUEST': 'GetMap',
|
|
'FORMAT': 'image/png',
|
|
'TRANSPARENT': true,
|
|
};
|
|
Object.assign(params, this.params_);
|
|
|
|
this.imageSize_[0] = round(
|
|
getWidth(requestExtent) / imageResolution,
|
|
DECIMALS
|
|
);
|
|
this.imageSize_[1] = round(
|
|
getHeight(requestExtent) / imageResolution,
|
|
DECIMALS
|
|
);
|
|
|
|
const url = this.getRequestUrl_(
|
|
requestExtent,
|
|
this.imageSize_,
|
|
pixelRatio,
|
|
projection,
|
|
params
|
|
);
|
|
|
|
this.image_ = new ImageWrapper(
|
|
requestExtent,
|
|
resolution,
|
|
pixelRatio,
|
|
url,
|
|
this.crossOrigin_,
|
|
this.imageLoadFunction_
|
|
);
|
|
|
|
this.renderedRevision_ = this.getRevision();
|
|
|
|
this.image_.addEventListener(
|
|
EventType.CHANGE,
|
|
this.handleImageChange.bind(this)
|
|
);
|
|
|
|
return this.image_;
|
|
}
|
|
|
|
/**
|
|
* Return the image load function of the source.
|
|
* @return {import("../Image.js").LoadFunction} The image load function.
|
|
* @api
|
|
*/
|
|
getImageLoadFunction() {
|
|
return this.imageLoadFunction_;
|
|
}
|
|
|
|
/**
|
|
* @param {import("../extent.js").Extent} extent Extent.
|
|
* @param {import("../size.js").Size} size Size.
|
|
* @param {number} pixelRatio Pixel ratio.
|
|
* @param {import("../proj/Projection.js").default} projection Projection.
|
|
* @param {Object} params Params.
|
|
* @return {string} Request URL.
|
|
* @private
|
|
*/
|
|
getRequestUrl_(extent, size, pixelRatio, projection, params) {
|
|
assert(this.url_ !== undefined, 9); // `url` must be configured or set using `#setUrl()`
|
|
|
|
params[this.v13_ ? 'CRS' : 'SRS'] = projection.getCode();
|
|
|
|
if (!('STYLES' in this.params_)) {
|
|
params['STYLES'] = '';
|
|
}
|
|
|
|
if (pixelRatio != 1) {
|
|
switch (this.serverType_) {
|
|
case 'geoserver':
|
|
const dpi = (90 * pixelRatio + 0.5) | 0;
|
|
if ('FORMAT_OPTIONS' in params) {
|
|
params['FORMAT_OPTIONS'] += ';dpi:' + dpi;
|
|
} else {
|
|
params['FORMAT_OPTIONS'] = 'dpi:' + dpi;
|
|
}
|
|
break;
|
|
case 'mapserver':
|
|
params['MAP_RESOLUTION'] = 90 * pixelRatio;
|
|
break;
|
|
case 'carmentaserver':
|
|
case 'qgis':
|
|
params['DPI'] = 90 * pixelRatio;
|
|
break;
|
|
default: // Unknown `serverType` configured
|
|
assert(false, 8);
|
|
break;
|
|
}
|
|
}
|
|
|
|
params['WIDTH'] = size[0];
|
|
params['HEIGHT'] = size[1];
|
|
|
|
const axisOrientation = projection.getAxisOrientation();
|
|
let bbox;
|
|
if (this.v13_ && axisOrientation.substr(0, 2) == 'ne') {
|
|
bbox = [extent[1], extent[0], extent[3], extent[2]];
|
|
} else {
|
|
bbox = extent;
|
|
}
|
|
params['BBOX'] = bbox.join(',');
|
|
|
|
return appendParams(/** @type {string} */ (this.url_), params);
|
|
}
|
|
|
|
/**
|
|
* Return the URL used for this WMS source.
|
|
* @return {string|undefined} URL.
|
|
* @api
|
|
*/
|
|
getUrl() {
|
|
return this.url_;
|
|
}
|
|
|
|
/**
|
|
* Set the image load function of the source.
|
|
* @param {import("../Image.js").LoadFunction} imageLoadFunction Image load function.
|
|
* @api
|
|
*/
|
|
setImageLoadFunction(imageLoadFunction) {
|
|
this.image_ = null;
|
|
this.imageLoadFunction_ = imageLoadFunction;
|
|
this.changed();
|
|
}
|
|
|
|
/**
|
|
* Set the URL to use for requests.
|
|
* @param {string|undefined} url URL.
|
|
* @api
|
|
*/
|
|
setUrl(url) {
|
|
if (url != this.url_) {
|
|
this.url_ = url;
|
|
this.image_ = null;
|
|
this.changed();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update the user-provided params.
|
|
* @param {Object} params Params.
|
|
* @api
|
|
*/
|
|
updateParams(params) {
|
|
Object.assign(this.params_, params);
|
|
this.updateV13_();
|
|
this.image_ = null;
|
|
this.changed();
|
|
}
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
updateV13_() {
|
|
const version = this.params_['VERSION'] || DEFAULT_VERSION;
|
|
this.v13_ = compareVersions(version, '1.3') >= 0;
|
|
}
|
|
}
|
|
|
|
export default ImageWMS;
|