Do not quote featureNS and featureType in options

This commit is contained in:
Bart van den Eijnden
2014-12-15 20:28:13 +01:00
parent a101204ded
commit a1c6662812

View File

@@ -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));