diff --git a/src/ol/layer/Image.js b/src/ol/layer/Image.js index 1f8e5a1b94..5301be8349 100644 --- a/src/ol/layer/Image.js +++ b/src/ol/layer/Image.js @@ -18,7 +18,7 @@ import Layer from '../layer/Layer.js'; * visible. * @property {number} [maxResolution] The maximum resolution (exclusive) below which this layer will * be visible. - * @property {ol.PluggableMap} [map] Sets the layer as overlay on a map. The map will not manage + * @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 * use {@link ol.Map#addLayer}. diff --git a/src/ol/layer/Tile.js b/src/ol/layer/Tile.js index da7a095854..9f9a5e4732 100644 --- a/src/ol/layer/Tile.js +++ b/src/ol/layer/Tile.js @@ -23,7 +23,7 @@ import {assign} from '../obj.js'; * @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 {ol.PluggableMap} [map] Sets the layer as overlay on a map. The map will not manage + * @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 * use {@link ol.Map#addLayer}. diff --git a/src/ol/layer/Vector.js b/src/ol/layer/Vector.js index 92183ef6e5..655cdc816c 100644 --- a/src/ol/layer/Vector.js +++ b/src/ol/layer/Vector.js @@ -33,7 +33,7 @@ import {createDefaultStyle, toFunction as toStyleFunction} from '../style/Style. * * `'vector'`: Vector layers are rendered as vectors. Most accurate rendering even during * animations, but slower performance. * @property {ol.source.Vector} [source] Source. - * @property {ol.PluggableMap} [map] Sets the layer as overlay on a map. The map will not manage + * @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 * use {@link ol.Map#addLayer}. diff --git a/src/ol/layer/VectorTile.js b/src/ol/layer/VectorTile.js index 442f9c5105..9d638537e9 100644 --- a/src/ol/layer/VectorTile.js +++ b/src/ol/layer/VectorTile.js @@ -41,7 +41,7 @@ import {assign} from '../obj.js'; * * When `declutter` is set to `true`, `'hybrid'` will be used instead of `'image'`. * @property {ol.source.VectorTile} [source] Source. - * @property {ol.PluggableMap} [map] Sets the layer as overlay on a map. The map will not manage + * @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 * use {@link ol.Map#addLayer}.