Move ol.SourceImageOptions to ol/source/Image

This commit is contained in:
Roman Zoller
2018-03-25 12:00:26 +02:00
parent d4f39f7bbb
commit 81a0c341ab
2 changed files with 11 additions and 11 deletions

View File

@@ -67,6 +67,16 @@ const ImageSourceEvent = function(type, image) {
inherits(ImageSourceEvent, Event);
/**
* @typedef {Object} Options
* @property {ol.AttributionLike} [attributions]
* @property {module:ol/extent~Extent} [extent]
* @property {module:ol/proj~ProjectionLike} projection
* @property {Array.<number>} [resolutions]
* @property {ol.source.State} [state]
*/
/**
* @classdesc
* Abstract base class; normally only used for creating subclasses and not
@@ -76,7 +86,7 @@ inherits(ImageSourceEvent, Event);
* @constructor
* @abstract
* @extends {ol.source.Source}
* @param {ol.SourceImageOptions} options Single image source options.
* @param {module:ol/source/Image~Options} options Single image source options.
* @api
*/
const ImageSource = function(options) {