Module type for ol.source.Image
This commit is contained in:
@@ -22,7 +22,7 @@ import Layer from '../layer/Layer.js';
|
||||
* this layer in its layers collection, and the layer will be rendered on top. This is useful for
|
||||
* temporary layers. The standard way to add a layer to a map and have it managed by the map is to
|
||||
* use {@link ol.Map#addLayer}.
|
||||
* @property {ol.source.Image} [source] Source for this layer.
|
||||
* @property {module:ol/source/Image~ImageSource} [source] Source for this layer.
|
||||
*/
|
||||
|
||||
|
||||
@@ -57,9 +57,9 @@ inherits(ImageLayer, Layer);
|
||||
|
||||
|
||||
/**
|
||||
* Return the associated {@link ol.source.Image source} of the image layer.
|
||||
* Return the associated {@link module:ol/source/Image~ImageSource source} of the image layer.
|
||||
* @function
|
||||
* @return {ol.source.Image} Source.
|
||||
* @return {module:ol/source/Image~ImageSource} Source.
|
||||
* @api
|
||||
*/
|
||||
ImageLayer.prototype.getSource;
|
||||
|
||||
@@ -14,7 +14,7 @@ import Triangulation from '../reproj/Triangulation.js';
|
||||
/**
|
||||
* @classdesc
|
||||
* Class encapsulating single reprojected image.
|
||||
* See {@link ol.source.Image}.
|
||||
* See {@link module:ol/source/Image~ImageSource}.
|
||||
*
|
||||
* @constructor
|
||||
* @extends {module:ol/ImageBase~ImageBase}
|
||||
|
||||
@@ -43,7 +43,7 @@ const ImageSourceEventType = {
|
||||
|
||||
/**
|
||||
* @classdesc
|
||||
* Events emitted by {@link ol.source.Image} instances are instances of this
|
||||
* Events emitted by {@link module:ol/source/Image~ImageSource} instances are instances of this
|
||||
* type.
|
||||
*
|
||||
* @constructor
|
||||
|
||||
@@ -50,7 +50,7 @@ import {appendParams} from '../uri.js';
|
||||
*
|
||||
* @constructor
|
||||
* @fires ol.source.Image.Event
|
||||
* @extends {ol.source.Image}
|
||||
* @extends {module:ol/source/Image~ImageSource}
|
||||
* @param {module:ol/source/ImageArcGISRest~Options=} opt_options Image ArcGIS Rest Options.
|
||||
* @api
|
||||
*/
|
||||
|
||||
@@ -32,7 +32,7 @@ import ImageSource from '../source/Image.js';
|
||||
* Base class for image sources where a canvas element is the image.
|
||||
*
|
||||
* @constructor
|
||||
* @extends {ol.source.Image}
|
||||
* @extends {module:ol/source/Image~ImageSource}
|
||||
* @param {module:ol/source/ImageCanvas~Options=} options ImageCanvas options.
|
||||
* @api
|
||||
*/
|
||||
|
||||
@@ -34,7 +34,7 @@ import {appendParams} from '../uri.js';
|
||||
*
|
||||
* @constructor
|
||||
* @fires ol.source.Image.Event
|
||||
* @extends {ol.source.Image}
|
||||
* @extends {module:ol/source/Image~ImageSource}
|
||||
* @param {module:ol/source/ImageMapGuide~Options=} options ImageMapGuide options.
|
||||
* @api
|
||||
*/
|
||||
|
||||
@@ -33,7 +33,7 @@ import ImageSource, {defaultImageLoadFunction} from '../source/Image.js';
|
||||
* A layer source for displaying a single, static image.
|
||||
*
|
||||
* @constructor
|
||||
* @extends {ol.source.Image}
|
||||
* @extends {module:ol/source/Image~ImageSource}
|
||||
* @param {module:ol/source/ImageStatic~Options=} options ImageStatic options.
|
||||
* @api
|
||||
*/
|
||||
|
||||
@@ -49,7 +49,7 @@ import {appendParams} from '../uri.js';
|
||||
*
|
||||
* @constructor
|
||||
* @fires ol.source.Image.Event
|
||||
* @extends {ol.source.Image}
|
||||
* @extends {module:ol/source/Image~ImageSource}
|
||||
* @param {module:ol/source/ImageWMS~Options=} [opt_options] ImageWMS options.
|
||||
* @api
|
||||
*/
|
||||
|
||||
@@ -109,7 +109,7 @@ inherits(RasterSourceEvent, Event);
|
||||
* output pixel values.
|
||||
*
|
||||
* @constructor
|
||||
* @extends {ol.source.Image}
|
||||
* @extends {module:ol/source/Image~ImageSource}
|
||||
* @fires ol.source.Raster.Event
|
||||
* @param {module:ol/source/Raster~Options=} options Options.
|
||||
* @api
|
||||
@@ -467,7 +467,7 @@ function createRenderer(source) {
|
||||
|
||||
/**
|
||||
* Create an image renderer for the provided source.
|
||||
* @param {ol.source.Image} source The source.
|
||||
* @param {module:ol/source/Image~ImageSource} source The source.
|
||||
* @return {ol.renderer.canvas.Layer} The renderer.
|
||||
*/
|
||||
function createImageRenderer(source) {
|
||||
|
||||
Reference in New Issue
Block a user