diff --git a/src/ol/source/Tile.js b/src/ol/source/Tile.js index 14f8793ae4..b746695f48 100644 --- a/src/ol/source/Tile.js +++ b/src/ol/source/Tile.js @@ -21,7 +21,7 @@ import {wrapX, getForProjection as getTileGridForProjection} from '../tilegrid.j * @property {number} [tilePixelRatio] * @property {module:ol/proj~ProjectionLike} [projection] * @property {module:ol/source/State~State} [state] - * @property {ol.tilegrid.TileGrid} [tileGrid] + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] * @property {boolean} [wrapX=true] * @property {number} [transition] */ diff --git a/src/ol/source/TileDebug.js b/src/ol/source/TileDebug.js index ac5ac6bc18..00de3bb4d2 100644 --- a/src/ol/source/TileDebug.js +++ b/src/ol/source/TileDebug.js @@ -78,7 +78,7 @@ LabeledTile.prototype.load = function() {}; /** * @typedef {Object} Options * @property {module:ol/proj~ProjectionLike} projection Projection. - * @property {ol.tilegrid.TileGrid} [tileGrid] Tile grid. + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] Tile grid. * @property {boolean} [wrapX=true] Whether to wrap the world horizontally. */ diff --git a/src/ol/source/TileImage.js b/src/ol/source/TileImage.js index 022bfb32f2..8aba8fa4f5 100644 --- a/src/ol/source/TileImage.js +++ b/src/ol/source/TileImage.js @@ -31,7 +31,7 @@ import {getForProjection as getTileGridForProjection} from '../tilegrid.js'; * module:ol/TileState~TileState, string, ?string, * ol.TileLoadFunctionType)} [tileClass] Class used to instantiate image tiles. * Default is {@link module:ol/ImageTile~ImageTile}. - * @property {ol.tilegrid.TileGrid} [tileGrid] Tile grid. + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] Tile grid. * @property {ol.TileLoadFunctionType} [tileLoadFunction] Optional function to load a tile given a URL. The default is * ```js * function(imageTile, src) { diff --git a/src/ol/source/TileWMS.js b/src/ol/source/TileWMS.js index d96ac149ab..c30f0ec38c 100644 --- a/src/ol/source/TileWMS.js +++ b/src/ol/source/TileWMS.js @@ -47,7 +47,7 @@ import {appendParams} from '../uri.js'; * module:ol/TileState~TileState, string, ?string, * ol.TileLoadFunctionType)} [tileClass] Class used to instantiate image tiles. * Default is {@link module:ol/ImageTile~ImageTile}. - * @property {ol.tilegrid.TileGrid} [tileGrid] Tile grid. Base this on the resolutions, + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] Tile grid. Base this on the resolutions, * tilesize and extent supported by the server. * If this is not defined, a default grid will be used: if there is a projection * extent, the grid will be based on that; if not, a grid based on a global diff --git a/src/ol/source/UrlTile.js b/src/ol/source/UrlTile.js index bb2eae35d7..8d4f348362 100644 --- a/src/ol/source/UrlTile.js +++ b/src/ol/source/UrlTile.js @@ -16,7 +16,7 @@ import {getKeyZXY} from '../tilecoord.js'; * @property {boolean} [opaque] * @property {module:ol/proj~ProjectionLike} [projection] * @property {module:ol/source/State~State} [state] - * @property {ol.tilegrid.TileGrid} [tileGrid] + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] * @property {module:ol/Tile~LoadFunction} tileLoadFunction * @property {number} [tilePixelRatio] * @property {module:ol/Tile~UrlFunction} [tileUrlFunction] diff --git a/src/ol/source/VectorTile.js b/src/ol/source/VectorTile.js index 4cfb997e5a..0b4af2049f 100644 --- a/src/ol/source/VectorTile.js +++ b/src/ol/source/VectorTile.js @@ -25,7 +25,7 @@ import {createXYZ, extentFromProjection, createForProjection} from '../tilegrid. * module:ol/TileState~TileState, string, ?string, * ol.TileLoadFunctionType)} [tileClass] Class used to instantiate image tiles. * Default is {@link ol.VectorTile}. - * @property {ol.tilegrid.TileGrid} [tileGrid] Tile grid. + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] Tile grid. * @property {ol.TileLoadFunctionType} [tileLoadFunction] * Optional function to load a tile given a URL. Could look like this: * ```js diff --git a/src/ol/source/WMTS.js b/src/ol/source/WMTS.js index 097284f05c..98d8cb86eb 100644 --- a/src/ol/source/WMTS.js +++ b/src/ol/source/WMTS.js @@ -75,7 +75,7 @@ import {appendParams} from '../uri.js'; * module:ol/TileState~TileState, string, ?string, * ol.TileLoadFunctionType)} [tileClass] Class used to instantiate image tiles. * Default is {@link module:ol/ImageTile~ImageTile}. - * @property {ol.tilegrid.TileGrid} [tileGrid] Tile grid. Base this on the resolutions, + * @property {module:ol/tilegrid/TileGrid~TileGrid} [tileGrid] Tile grid. Base this on the resolutions, * tilesize and extent supported by the server. * If this is not defined, a default grid will be used: if there is a projection * extent, the grid will be based on that; if not, a grid based on a global