From aea9479c12d6b9be50d75bcd381b23d599cc91a6 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 16 Oct 2018 08:48:42 +0200 Subject: [PATCH] Rename parsers objects in ol/format/GML32 --- src/ol/format/GML32.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ol/format/GML32.js b/src/ol/format/GML32.js index 7fc52163b8..3cef04e4b1 100644 --- a/src/ol/format/GML32.js +++ b/src/ol/format/GML32.js @@ -35,9 +35,9 @@ GML32.prototype.namespace = 'http://www.opengis.net/gml/3.2'; /** * @const * @type {Object.>} - * @private + * @protected */ -GML32.prototype.GEOMETRY_FLAT_COORDINATES_PARSERS_ = { +GML32.prototype.GEOMETRY_FLAT_COORDINATES_PARSERS = { 'http://www.opengis.net/gml/3.2': { 'pos': makeReplacer(GML3.prototype.readFlatPos_), 'posList': makeReplacer(GML3.prototype.readFlatPosList_) @@ -47,9 +47,9 @@ GML32.prototype.GEOMETRY_FLAT_COORDINATES_PARSERS_ = { /** * @const * @type {Object.>} - * @private + * @protected */ -GML32.prototype.FLAT_LINEAR_RINGS_PARSERS_ = { +GML32.prototype.FLAT_LINEAR_RINGS_PARSERS = { 'http://www.opengis.net/gml/3.2': { 'interior': GML3.prototype.interiorParser_, 'exterior': GML3.prototype.exteriorParser_ @@ -59,9 +59,9 @@ GML32.prototype.FLAT_LINEAR_RINGS_PARSERS_ = { /** * @const * @type {Object.>} - * @private + * @protected */ -GML32.prototype.GEOMETRY_PARSERS_ = { +GML32.prototype.GEOMETRY_PARSERS = { 'http://www.opengis.net/gml/3.2': { 'Point': makeReplacer(GMLBase.prototype.readPoint), 'MultiPoint': makeReplacer(