From 83dcc82cf7b599f277c0736c503c5c663ce6b3fa Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 21 Mar 2018 17:11:48 +0100 Subject: [PATCH] Module type for ol.format.JSONFeature --- src/ol/format/EsriJSON.js | 2 +- src/ol/format/GeoJSON.js | 2 +- src/ol/format/TopoJSON.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ol/format/EsriJSON.js b/src/ol/format/EsriJSON.js index 8325ac87db..41b276c6b6 100644 --- a/src/ol/format/EsriJSON.js +++ b/src/ol/format/EsriJSON.js @@ -59,7 +59,7 @@ GEOMETRY_WRITERS[GeometryType.MULTI_POLYGON] = writeMultiPolygonGeometry; * Feature format for reading and writing data in the EsriJSON format. * * @constructor - * @extends {ol.format.JSONFeature} + * @extends {module:ol/format/JSONFeature~JSONFeature} * @param {module:ol/format/EsriJSON~Options=} opt_options Options. * @api */ diff --git a/src/ol/format/GeoJSON.js b/src/ol/format/GeoJSON.js index 00d3fec7f8..2e5ea2cb02 100644 --- a/src/ol/format/GeoJSON.js +++ b/src/ol/format/GeoJSON.js @@ -38,7 +38,7 @@ import {get as getProjection} from '../proj.js'; * Feature format for reading and writing data in the GeoJSON format. * * @constructor - * @extends {ol.format.JSONFeature} + * @extends {module:ol/format/JSONFeature~JSONFeature} * @param {module:ol/format/GeoJSON~Options=} opt_options Options. * @api */ diff --git a/src/ol/format/TopoJSON.js b/src/ol/format/TopoJSON.js index 2ae25edeb4..8fef213094 100644 --- a/src/ol/format/TopoJSON.js +++ b/src/ol/format/TopoJSON.js @@ -44,7 +44,7 @@ import {get as getProjection} from '../proj.js'; * Feature format for reading data in the TopoJSON format. * * @constructor - * @extends {ol.format.JSONFeature} + * @extends {module:ol/format/JSONFeature~JSONFeature} * @param {module:ol/format/TopoJSON~Options=} opt_options Options. * @api */