Module type for ol.TileCache

This commit is contained in:
Frederic Junod
2018-03-19 11:51:31 +01:00
parent ba62774cf0
commit fe686ef915
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -55,7 +55,7 @@ const TileSource = function(options) {
/** /**
* @protected * @protected
* @type {ol.TileCache} * @type {module:ol/TileCache~TileCache}
*/ */
this.tileCache = new TileCache(options.cacheSize); this.tileCache = new TileCache(options.cacheSize);
@@ -225,7 +225,7 @@ TileSource.prototype.getTileGridForProjection = function(projection) {
/** /**
* @param {module:ol/proj/Projection~Projection} projection Projection. * @param {module:ol/proj/Projection~Projection} projection Projection.
* @return {ol.TileCache} Tile cache. * @return {module:ol/TileCache~TileCache} Tile cache.
* @protected * @protected
*/ */
TileSource.prototype.getTileCacheForProjection = function(projection) { TileSource.prototype.getTileCacheForProjection = function(projection) {
+1 -1
View File
@@ -61,7 +61,7 @@ const TileImage = function(options) {
/** /**
* @protected * @protected
* @type {!Object.<string, ol.TileCache>} * @type {!Object.<string, module:ol/TileCache~TileCache>}
*/ */
this.tileCacheForProjection = {}; this.tileCacheForProjection = {};
+1 -1
View File
@@ -98,7 +98,7 @@ VectorTileSource.prototype.getOverlaps = function() {
}; };
/** /**
* clear {@link ol.TileCache} and delete all source tiles * clear {@link module:ol/TileCache~TileCache} and delete all source tiles
* @api * @api
*/ */
VectorTileSource.prototype.clear = function() { VectorTileSource.prototype.clear = function() {