Module type for ol.VectorTile

This commit is contained in:
Frederic Junod
2018-03-19 09:36:58 +01:00
parent c4b38ed5dc
commit 5b349147b5
2 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ const VectorTileSource = function(options) {
/**
* @private
* @type {Object.<string,ol.VectorTile>}
* @type {Object.<string, module:ol/VectorTile~VectorTile>}
*/
this.sourceTiles_ = {};
@@ -74,7 +74,7 @@ const VectorTileSource = function(options) {
/**
* @protected
* @type {function(new: ol.VectorTile, module:ol/tilecoord~TileCoord, module:ol/TileState~TileState, string,
* @type {function(new: module:ol/VectorTile~VectorTile, module:ol/tilecoord~TileCoord, module:ol/TileState~TileState, string,
* ol.format.Feature, module:ol/Tile~LoadFunction)}
*/
this.tileClass = options.tileClass ? options.tileClass : VectorTile;