diff --git a/src/ol/PluggableMap.js b/src/ol/PluggableMap.js index 883183f38b..36f4387984 100644 --- a/src/ol/PluggableMap.js +++ b/src/ol/PluggableMap.js @@ -80,7 +80,7 @@ import {create as createTransform, apply as applyTransform} from './transform.js * @property {module:ol/Collection~Collection.} [interactions] * @property {Element|Document} keyboardEventTarget * @property {module:ol/Collection~Collection.} overlays - * @property {olx.MapRendererPlugin} mapRendererPlugin + * @property {module:ol/plugins~MapRendererPlugin} mapRendererPlugin * @property {Object.} values */ @@ -1461,7 +1461,7 @@ function createOptionsInternal(options) { } /** - * @type {olx.MapRendererPlugin} + * @type {module:ol/plugins~MapRendererPlugin} */ let mapRendererPlugin; diff --git a/src/ol/plugins.js b/src/ol/plugins.js index a26fcfe7f0..66a4b0a377 100644 --- a/src/ol/plugins.js +++ b/src/ol/plugins.js @@ -32,7 +32,7 @@ const mapRendererPlugins = []; /** * Get all registered map renderer plugins. - * @return {Array} The registered map renderer plugins. + * @return {Array} The registered map renderer plugins. */ export function getMapRendererPlugins() { return mapRendererPlugins; @@ -66,7 +66,7 @@ export function register(type, plugin) { switch (type) { case PluginType.MAP_RENDERER: { plugins = mapRendererPlugins; - plugins.push(/** @type {olx.MapRendererPlugin} */ (plugin)); + plugins.push(/** @type {module:ol/plugins~MapRendererPlugin} */ (plugin)); break; } case PluginType.LAYER_RENDERER: {