Allow multiple featureTypes through ol.format.WFS as well

This commit is contained in:
Bart van den Eijnden
2014-12-27 19:12:57 +01:00
parent d0180f35e0
commit b05ead4056
4 changed files with 48 additions and 5 deletions

View File

@@ -1783,7 +1783,7 @@ olx.format.GPXOptions.prototype.readExtensions;
/**
* @typedef {{featureNS: string,
* featureType: string,
* featureType: (Array.<string>|string|undefined),
* gmlFormat: (ol.format.GMLBase|undefined),
* schemaLocation: (string|undefined)}}
* @api
@@ -1801,7 +1801,7 @@ olx.format.WFSOptions.prototype.featureNS;
/**
* The feature type to parse. Only used for read operations.
* @type {string}
* @type {Array.<string>|string|undefined}
* @api stable
*/
olx.format.WFSOptions.prototype.featureType;