Merge pull request #2699 from bartvde/issue-2699

No need for featureNS and featureType to be quoted
This commit is contained in:
Bart van den Eijnden
2014-12-15 21:06:02 +01:00

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