Module type for ol.source.Tile

This commit is contained in:
Frederic Junod
2018-04-20 14:37:46 +02:00
parent 327bda680d
commit 05f92c0333
8 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ import {assign} from '../obj.js';
* be visible.
* @property {number} [preload=0] Preload. Load low-resolution tiles up to `preload` levels. `0`
* means no preloading.
* @property {ol.source.Tile} [source] Source for this layer.
* @property {module:ol/source/Tile~TileSource} [source] Source for this layer.
* @property {module:ol/PluggableMap~PluggableMap} [map] Sets the layer as overlay on a map. The map will not manage
* this layer in its layers collection, and the layer will be rendered on top. This is useful for
* temporary layers. The standard way to add a layer to a map and have it managed by the map is to
@@ -84,7 +84,7 @@ TileLayer.prototype.getPreload = function() {
/**
* Return the associated {@link ol.source.Tile tilesource} of the layer.
* @function
* @return {ol.source.Tile} Source.
* @return {module:ol/source/Tile~TileSource} Source.
* @api
*/
TileLayer.prototype.getSource;