Module type for ol.format.XMLFeature

This commit is contained in:
Frederic Junod
2018-03-21 17:12:45 +01:00
parent 83dcc82cf7
commit 06bd5b4423
6 changed files with 6 additions and 6 deletions

View File

@@ -74,7 +74,7 @@ export const GMLNS = 'http://www.opengis.net/gml';
* @abstract * @abstract
* @param {module:ol/format/GMLBase~Options=} opt_options * @param {module:ol/format/GMLBase~Options=} opt_options
* Optional configuration object. * Optional configuration object.
* @extends {ol.format.XMLFeature} * @extends {module:ol/format/XMLFeature~XMLFeature}
*/ */
const GMLBase = function(opt_options) { const GMLBase = function(opt_options) {
const options = /** @type {module:ol/format/GMLBase~Options} */ (opt_options ? opt_options : {}); const options = /** @type {module:ol/format/GMLBase~Options} */ (opt_options ? opt_options : {});

View File

@@ -39,7 +39,7 @@ import {createElementNS, makeArrayPusher, makeArraySerializer, makeChildAppender
* Feature format for reading and writing data in the GPX format. * Feature format for reading and writing data in the GPX format.
* *
* @constructor * @constructor
* @extends {ol.format.XMLFeature} * @extends {module:ol/format/XMLFeature~XMLFeature}
* @param {module:ol/format/GPX~Options=} opt_options Options. * @param {module:ol/format/GPX~Options=} opt_options Options.
* @api * @api
*/ */

View File

@@ -260,7 +260,7 @@ function createStyleDefaults() {
* which do not support this will need a URL polyfill to be loaded before use. * which do not support this will need a URL polyfill to be loaded before use.
* *
* @constructor * @constructor
* @extends {ol.format.XMLFeature} * @extends {module:ol/format/XMLFeature~XMLFeature}
* @param {module:ol/format/KML~Options=} opt_options Options. * @param {module:ol/format/KML~Options=} opt_options Options.
* @api * @api
*/ */

View File

@@ -21,7 +21,7 @@ import {pushParseAndPop, makeStructureNS} from '../xml.js';
* [OSMXML format](http://wiki.openstreetmap.org/wiki/OSM_XML). * [OSMXML format](http://wiki.openstreetmap.org/wiki/OSM_XML).
* *
* @constructor * @constructor
* @extends {ol.format.XMLFeature} * @extends {module:ol/format/XMLFeature~XMLFeature}
* @api * @api
*/ */
const OSMXML = function() { const OSMXML = function() {

View File

@@ -128,7 +128,7 @@ const DEFAULT_VERSION = '1.1.0';
* *
* @constructor * @constructor
* @param {module:ol/format/WFS~Options=} opt_options Optional configuration object. * @param {module:ol/format/WFS~Options=} opt_options Optional configuration object.
* @extends {ol.format.XMLFeature} * @extends {module:ol/format/XMLFeature~XMLFeature}
* @api * @api
*/ */
const WFS = function(opt_options) { const WFS = function(opt_options) {

View File

@@ -22,7 +22,7 @@ import {makeArrayPusher, makeStructureNS, pushParseAndPop} from '../xml.js';
* {@link ol.format.GML2} to read features. * {@link ol.format.GML2} to read features.
* *
* @constructor * @constructor
* @extends {ol.format.XMLFeature} * @extends {module:ol/format/XMLFeature~XMLFeature}
* @param {module:ol/format/WMSGetFeatureInfo~Options=} opt_options Options. * @param {module:ol/format/WMSGetFeatureInfo~Options=} opt_options Options.
* @api * @api
*/ */