UNPKG

ol

Version:

OpenLayers mapping library

234 lines • 8.14 kB
export default ImageWMS; export type Options = { /** * Attributions. */ attributions?: string | string[] | ((arg0: import("../PluggableMap.js").FrameState) => string | string[]); /** * 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. */ crossOrigin?: string; /** * Use the `ol/Map#pixelRatio` value when requesting * the image from the remote server. */ hidpi?: boolean; /** * The type of * the remote WMS server: `mapserver`, `geoserver` or `qgis`. Only needed if `hidpi` is `true`. */ serverType?: any; /** * Optional function to load an image given a URL. */ imageLoadFunction?: (arg0: ImageWrapper, arg1: string) => void; /** * 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. */ params: { [x: string]: any; }; /** * Projection. Default is the view projection. */ projection?: string | import("../proj/Projection.js").default; /** * 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. */ ratio?: number; /** * Resolutions. * If specified, requests will be made for these resolutions only. */ resolutions?: number[]; /** * WMS service URL. */ url: string; }; /** * @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("./WMSServerType.js").default|string} [serverType] The type of * the remote WMS server: `mapserver`, `geoserver` or `qgis`. Only needed if `hidpi` is `true`. * @property {import("../Image.js").LoadFunction} [imageLoadFunction] Optional function to load an image given a URL. * @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 */ declare class ImageWMS extends ImageSource { /** * @param {Options=} [opt_options] ImageWMS options. */ constructor(opt_options?: Options); /** * @private * @type {?string} */ private crossOrigin_; /** * @private * @type {string|undefined} */ private url_; /** * @private * @type {import("../Image.js").LoadFunction} */ private imageLoadFunction_; /** * @private * @type {!Object} */ private params_; /** * @private * @type {boolean} */ private v13_; /** * @private * @type {import("./WMSServerType.js").default|undefined} */ private serverType_; /** * @private * @type {boolean} */ private hidpi_; /** * @private * @type {import("../Image.js").default} */ private image_; /** * @private * @type {import("../size.js").Size} */ private imageSize_; /** * @private * @type {number} */ private renderedRevision_; /** * @private * @type {number} */ private ratio_; /** * 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: number[], resolution: number, projection: string | import("../proj/Projection.js").default, params: any): string; /** * 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?: number, params?: any): string; /** * 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(): any; /** * @inheritDoc */ getImageInternal(extent: any, resolution: any, pixelRatio: any, projection: any): ImageWrapper; /** * Return the image load function of the source. * @return {import("../Image.js").LoadFunction} The image load function. * @api */ getImageLoadFunction(): (arg0: ImageWrapper, arg1: string) => void; /** * @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 */ private getRequestUrl_; /** * Return the URL used for this WMS source. * @return {string|undefined} URL. * @api */ getUrl(): string; /** * Set the image load function of the source. * @param {import("../Image.js").LoadFunction} imageLoadFunction Image load function. * @api */ setImageLoadFunction(imageLoadFunction: (arg0: ImageWrapper, arg1: string) => void): void; /** * Set the URL to use for requests. * @param {string|undefined} url URL. * @api */ setUrl(url: string): void; /** * Update the user-provided params. * @param {Object} params Params. * @api */ updateParams(params: any): void; /** * @private */ private updateV13_; } import ImageWrapper from "../Image.js"; import ImageSource from "./Image.js"; //# sourceMappingURL=ImageWMS.d.ts.map