Merge pull request #3713 from bartvde/issue-3713

Add missing propertyNames member for olx.format.WFSWriteGetFeatureOptions
This commit is contained in:
Bart van den Eijnden
2015-06-08 16:15:17 +02:00

View File

@@ -1910,6 +1910,7 @@ olx.format.WFSOptions.prototype.schemaLocation;
* outputFormat: (string|undefined),
* maxFeatures: (number|undefined),
* geometryName: (string|undefined),
* propertyNames: (Array.<string>|undefined),
* bbox: (ol.Extent|undefined)}}
* @api
*/
@@ -1981,6 +1982,14 @@ olx.format.WFSWriteGetFeatureOptions.prototype.maxFeatures;
olx.format.WFSWriteGetFeatureOptions.prototype.geometryName;
/**
* Optional list of property names to serialize.
* @type {Array.<string>|undefined}
* @api
*/
olx.format.WFSWriteGetFeatureOptions.prototype.propertyNames;
/**
* Extent to use for the BBOX filter.
* @type {ol.Extent|undefined}