114 lines
3.7 KiB
JavaScript
114 lines
3.7 KiB
JavaScript
/**
|
|
* @module ol/source/ImageStatic
|
|
*/
|
|
import {inherits} from '../index.js';
|
|
import ImageWrapper from '../Image.js';
|
|
import ImageState from '../ImageState.js';
|
|
import {createCanvasContext2D} from '../dom.js';
|
|
import {listen} from '../events.js';
|
|
import EventType from '../events/EventType.js';
|
|
import {intersects, getHeight, getWidth} from '../extent.js';
|
|
import {get as getProjection} from '../proj.js';
|
|
import ImageSource, {defaultImageLoadFunction} from '../source/Image.js';
|
|
|
|
/**
|
|
* @typedef {Object} Options
|
|
* @property {module:ol/source/Source~AttributionLike} [attributions] Attributions.
|
|
* @property {null|string} [crossOrigin] The `crossOrigin` attribute for loaded images. Note that
|
|
* you must provide a `crossOrigin` value if you are using the WebGL renderer or if you want to
|
|
* access pixel data with the Canvas renderer. See
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image} for more detail.
|
|
* @property {module:ol/extent~Extent} [imageExtent] Extent of the image in map coordinates.
|
|
* This is the [left, bottom, right, top] map coordinates of your image.
|
|
* @property {module:ol/Image~LoadFunction} [imageLoadFunction] Optional function to load an image given a URL.
|
|
* @property {module:ol/proj~ProjectionLike} projection Projection.
|
|
* @property {module:ol/size~Size} [imageSize] Size of the image in pixels. Usually the image size is auto-detected, so this
|
|
* only needs to be set if auto-detection fails for some reason.
|
|
* @property {string} url Image URL.
|
|
*/
|
|
|
|
|
|
/**
|
|
* @classdesc
|
|
* A layer source for displaying a single, static image.
|
|
*
|
|
* @constructor
|
|
* @extends {module:ol/source/Image}
|
|
* @param {module:ol/source/ImageStatic~Options=} options ImageStatic options.
|
|
* @api
|
|
*/
|
|
const Static = function(options) {
|
|
const imageExtent = options.imageExtent;
|
|
|
|
const crossOrigin = options.crossOrigin !== undefined ?
|
|
options.crossOrigin : null;
|
|
|
|
const /** @type {module:ol/Image~LoadFunction} */ imageLoadFunction =
|
|
options.imageLoadFunction !== undefined ?
|
|
options.imageLoadFunction : defaultImageLoadFunction;
|
|
|
|
ImageSource.call(this, {
|
|
attributions: options.attributions,
|
|
projection: getProjection(options.projection)
|
|
});
|
|
|
|
/**
|
|
* @private
|
|
* @type {module:ol/Image}
|
|
*/
|
|
this.image_ = new ImageWrapper(imageExtent, undefined, 1, options.url, crossOrigin, imageLoadFunction);
|
|
|
|
/**
|
|
* @private
|
|
* @type {module:ol/size~Size}
|
|
*/
|
|
this.imageSize_ = options.imageSize ? options.imageSize : null;
|
|
|
|
listen(this.image_, EventType.CHANGE,
|
|
this.handleImageChange, this);
|
|
|
|
};
|
|
|
|
inherits(Static, ImageSource);
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
Static.prototype.getImageInternal = function(extent, resolution, pixelRatio, projection) {
|
|
if (intersects(extent, this.image_.getExtent())) {
|
|
return this.image_;
|
|
}
|
|
return null;
|
|
};
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
Static.prototype.handleImageChange = function(evt) {
|
|
if (this.image_.getState() == ImageState.LOADED) {
|
|
const imageExtent = this.image_.getExtent();
|
|
const image = this.image_.getImage();
|
|
let imageWidth, imageHeight;
|
|
if (this.imageSize_) {
|
|
imageWidth = this.imageSize_[0];
|
|
imageHeight = this.imageSize_[1];
|
|
} else {
|
|
imageWidth = image.width;
|
|
imageHeight = image.height;
|
|
}
|
|
const resolution = getHeight(imageExtent) / imageHeight;
|
|
const targetWidth = Math.ceil(getWidth(imageExtent) / resolution);
|
|
if (targetWidth != imageWidth) {
|
|
const context = createCanvasContext2D(targetWidth, imageHeight);
|
|
const canvas = context.canvas;
|
|
context.drawImage(image, 0, 0, imageWidth, imageHeight,
|
|
0, 0, canvas.width, canvas.height);
|
|
this.image_.setImage(canvas);
|
|
}
|
|
}
|
|
ImageSource.prototype.handleImageChange.call(this, evt);
|
|
};
|
|
export default Static;
|