add GML3.2 format

This commit is contained in:
NielsCharlier
2018-07-27 16:31:57 +02:00
committed by Frederic Junod
parent 6252404d5b
commit 2005c82dd2
4 changed files with 1254 additions and 5 deletions
+4 -1
View File
@@ -123,7 +123,7 @@ class GMLBase extends XMLFeature {
* @type {Object<string, Object<string, Object>>}
*/
this.FEATURE_COLLECTION_PARSERS = {};
this.FEATURE_COLLECTION_PARSERS[GMLNS] = {
this.FEATURE_COLLECTION_PARSERS[this.namespace] = {
'featureMember': makeArrayPusher(this.readFeaturesInternal),
'featureMembers': makeReplacer(this.readFeaturesInternal)
};
@@ -466,6 +466,9 @@ class GMLBase extends XMLFeature {
}
GMLBase.prototype.namespace = GMLNS;
/**
* @const
* @type {Object<string, Object<string, import("../xml.js").Parser>>}