From a1c6662812684c6be5289b17eac2972cd01be67a Mon Sep 17 00:00:00 2001 From: Bart van den Eijnden Date: Mon, 15 Dec 2014 20:28:13 +0100 Subject: [PATCH] Do not quote featureNS and featureType in options --- src/ol/format/gml/gmlbaseformat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/format/gml/gmlbaseformat.js b/src/ol/format/gml/gmlbaseformat.js index 6baa27b61f..415fe1c29c 100644 --- a/src/ol/format/gml/gmlbaseformat.js +++ b/src/ol/format/gml/gmlbaseformat.js @@ -544,8 +544,8 @@ ol.format.GMLBase.prototype.readFeatures; ol.format.GMLBase.prototype.readFeaturesFromNode = function(node, opt_options) { var options = { - 'featureType': this.featureType, - 'featureNS': this.featureNS + featureType: this.featureType, + featureNS: this.featureNS }; if (goog.isDef(opt_options)) { goog.object.extend(options, this.getReadOptions(node, opt_options));