Merge pull request #5736 from tsauerwein/resultType-docs

Show `resultType` attribute in docs
This commit is contained in:
Tobias Sauerwein
2016-08-16 12:40:23 +02:00
committed by GitHub
+11 -1
View File
@@ -2014,7 +2014,8 @@ olx.format.WFSOptions.prototype.schemaLocation;
* startIndex: (number|undefined), * startIndex: (number|undefined),
* count: (number|undefined), * count: (number|undefined),
* bbox: (ol.Extent|undefined), * bbox: (ol.Extent|undefined),
* filter: (ol.format.ogc.filter.Filter|undefined)}} * filter: (ol.format.ogc.filter.Filter|undefined),
* resultType: (string|undefined)}}
*/ */
olx.format.WFSWriteGetFeatureOptions; olx.format.WFSWriteGetFeatureOptions;
@@ -2127,6 +2128,15 @@ olx.format.WFSWriteGetFeatureOptions.prototype.bbox;
olx.format.WFSWriteGetFeatureOptions.prototype.filter; olx.format.WFSWriteGetFeatureOptions.prototype.filter;
/**
* Indicates what response should be returned, E.g. `hits` only includes the
* `numberOfFeatures` attribute in the response and no features.
* @type {string|undefined}
* @api
*/
olx.format.WFSWriteGetFeatureOptions.prototype.resultType;
/** /**
* @typedef {{featureNS: string, * @typedef {{featureNS: string,
* featurePrefix: string, * featurePrefix: string,