diff --git a/src/ol/source/TileImage.js b/src/ol/source/TileImage.js index 1effc41805..0ebcea0e48 100644 --- a/src/ol/source/TileImage.js +++ b/src/ol/source/TileImage.js @@ -53,7 +53,7 @@ const TileImage = function(options) { /** * @protected - * @type {function(new: ol.ImageTile, module:ol/tilecoord~TileCoord, ol.TileState, string, + * @type {function(new: ol.ImageTile, module:ol/tilecoord~TileCoord, module:ol/TileState~TileState, string, * ?string, module:ol/Tile~LoadFunction, module:ol/Tile~Options=)} */ this.tileClass = options.tileClass !== undefined ? diff --git a/src/ol/source/TileUTFGrid.js b/src/ol/source/TileUTFGrid.js index 9c6559731c..f8f227fdae 100644 --- a/src/ol/source/TileUTFGrid.js +++ b/src/ol/source/TileUTFGrid.js @@ -21,7 +21,7 @@ import {createXYZ, extentFromProjection} from '../tilegrid.js'; * @constructor * @extends {ol.Tile} * @param {module:ol/tilecoord~TileCoord} tileCoord Tile coordinate. - * @param {ol.TileState} state State. + * @param {module:ol/TileState~TileState} state State. * @param {string} src Image source URI. * @param {module:ol/extent~Extent} extent Extent of the tile. * @param {boolean} preemptive Load the tile when visible (before it's needed). diff --git a/src/ol/source/VectorTile.js b/src/ol/source/VectorTile.js index c05d75d650..b271024d40 100644 --- a/src/ol/source/VectorTile.js +++ b/src/ol/source/VectorTile.js @@ -74,7 +74,7 @@ const VectorTileSource = function(options) { /** * @protected - * @type {function(new: ol.VectorTile, module:ol/tilecoord~TileCoord, ol.TileState, string, + * @type {function(new: ol.VectorTile, module:ol/tilecoord~TileCoord, module:ol/TileState~TileState, string, * ol.format.Feature, module:ol/Tile~LoadFunction)} */ this.tileClass = options.tileClass ? options.tileClass : VectorTile; diff --git a/src/ol/source/Zoomify.js b/src/ol/source/Zoomify.js index 03df363f61..b2c1d2c391 100644 --- a/src/ol/source/Zoomify.js +++ b/src/ol/source/Zoomify.js @@ -28,7 +28,7 @@ const TierSizeCalculation = { * @extends {ol.ImageTile} * @param {module:ol/tilegrid/TileGrid~TileGrid} tileGrid TileGrid that the tile belongs to. * @param {module:ol/tilecoord~TileCoord} tileCoord Tile coordinate. - * @param {ol.TileState} state State. + * @param {module:ol/TileState~TileState} state State. * @param {string} src Image source URI. * @param {?string} crossOrigin Cross origin. * @param {module:ol/Tile~LoadFunction} tileLoadFunction Tile load function.