diff --git a/src/ol/format/GML.js b/src/ol/format/GML.js index 1dd873b511..5eebcd73ef 100644 --- a/src/ol/format/GML.js +++ b/src/ol/format/GML.js @@ -12,7 +12,7 @@ import GML3 from '../format/GML3.js'; * @constructor * @param {module:ol/format/GMLBase~Options=} opt_options * Optional configuration object. - * @extends {ol.format.GMLBase} + * @extends {module:ol/format/GMLBase~GMLBase} * @api */ const GML = GML3; diff --git a/src/ol/format/GML2.js b/src/ol/format/GML2.js index 4958c0f945..cbd30d7997 100644 --- a/src/ol/format/GML2.js +++ b/src/ol/format/GML2.js @@ -27,7 +27,7 @@ const schemaLocation = GMLNS + ' http://schemas.opengis.net/gml/2.1.2/feature.xs * * @constructor * @param {module:ol/format/GMLBase~Options=} opt_options Optional configuration object. - * @extends {ol.format.GMLBase} + * @extends {module:ol/format/GMLBase~GMLBase} * @api */ const GML2 = function(opt_options) { diff --git a/src/ol/format/GML3.js b/src/ol/format/GML3.js index 70930266fb..fda8a2914b 100644 --- a/src/ol/format/GML3.js +++ b/src/ol/format/GML3.js @@ -39,7 +39,7 @@ const schemaLocation = GMLNS + * @constructor * @param {module:ol/format/GMLBase~Options=} opt_options * Optional configuration object. - * @extends {ol.format.GMLBase} + * @extends {module:ol/format/GMLBase~GMLBase} * @api */ const GML3 = function(opt_options) { diff --git a/src/ol/format/WFS.js b/src/ol/format/WFS.js index 3352a6a290..c58ef3dc8c 100644 --- a/src/ol/format/WFS.js +++ b/src/ol/format/WFS.js @@ -118,7 +118,7 @@ const DEFAULT_VERSION = '1.1.0'; * Feature format for reading and writing data in the WFS format. * By default, supports WFS version 1.1.0. You can pass a GML format * as option if you want to read a WFS that contains GML2 (WFS 1.0.0). - * Also see {@link ol.format.GMLBase} which is used by this format. + * Also see {@link module:ol/format/GMLBase~GMLBase} which is used by this format. * * @constructor * @param {module:ol/format/WFS~Options=} opt_options Optional configuration object. @@ -142,7 +142,7 @@ const WFS = function(opt_options) { /** * @private - * @type {ol.format.GMLBase} + * @type {module:ol/format/GMLBase~GMLBase} */ this.gmlFormat_ = options.gmlFormat ? options.gmlFormat : new GML3();