Merge pull request #5252 from tsauerwein/wfs-getfeature-filter

Add filter option to ol.format.WFS#writeGetFeature
This commit is contained in:
Tobias Sauerwein
2016-04-27 09:11:55 +02:00
8 changed files with 1210 additions and 23 deletions
+10 -1
View File
@@ -2049,7 +2049,8 @@ olx.format.WFSOptions.prototype.schemaLocation;
* propertyNames: (Array.<string>|undefined),
* startIndex: (number|undefined),
* count: (number|undefined),
* bbox: (ol.Extent|undefined)}}
* bbox: (ol.Extent|undefined),
* filter: (ol.format.ogc.filter.Filter|undefined)}}
* @api
*/
olx.format.WFSWriteGetFeatureOptions;
@@ -2155,6 +2156,14 @@ olx.format.WFSWriteGetFeatureOptions.prototype.count;
olx.format.WFSWriteGetFeatureOptions.prototype.bbox;
/**
* OGC filter condition. See {@link ol.format.ogc.filter} for more information.
* @type {ol.format.ogc.filter.Filter|undefined}
* @api
*/
olx.format.WFSWriteGetFeatureOptions.prototype.filter;
/**
* @typedef {{featureNS: string,
* featurePrefix: string,