Module type for ol.style.*

This commit is contained in:
Frederic Junod
2018-03-27 15:04:07 +02:00
parent 2de83adb8e
commit 7cbc22fece
24 changed files with 184 additions and 184 deletions
+3 -3
View File
@@ -80,7 +80,7 @@ const AtlasManager = function(opt_options) {
/**
* @private
* @type {Array.<ol.style.Atlas>}
* @type {Array.<module:ol/style/Atlas~Atlas>}
*/
this.atlases_ = [new Atlas(this.currentSize_, this.space_)];
@@ -93,7 +93,7 @@ const AtlasManager = function(opt_options) {
/**
* @private
* @type {Array.<ol.style.Atlas>}
* @type {Array.<module:ol/style/Atlas~Atlas>}
*/
this.hitAtlases_ = [new Atlas(this.currentHitSize_, this.space_)];
};
@@ -119,7 +119,7 @@ AtlasManager.prototype.getInfo = function(id) {
/**
* @private
* @param {Array.<ol.style.Atlas>} atlases The atlases to search.
* @param {Array.<module:ol/style/Atlas~Atlas>} atlases The atlases to search.
* @param {string} id The identifier of the entry to check.
* @return {?module:ol/style/Atlas~AtlasInfo} The position and atlas image for the entry,
* or `null` if the entry is not part of the atlases.