Merge pull request #3024 from fredj/wfs_gmlFormat

Add missing gmlFormat to olx.format.WFSOptions
This commit is contained in:
Frédéric Junod
2014-12-08 17:55:21 +01:00

View File

@@ -1637,6 +1637,7 @@ olx.format.GPXOptions.prototype.readExtensions;
/** /**
* @typedef {{featureNS: string, * @typedef {{featureNS: string,
* featureType: string, * featureType: string,
* gmlFormat: (ol.format.GMLBase|undefined),
* schemaLocation: (string|undefined)}} * schemaLocation: (string|undefined)}}
* @api * @api
*/ */
@@ -1659,6 +1660,14 @@ olx.format.WFSOptions.prototype.featureNS;
olx.format.WFSOptions.prototype.featureType; olx.format.WFSOptions.prototype.featureType;
/**
* The GML format to use to parse the response. Default is `ol.format.GML3`.
* @type {ol.format.GMLBase|undefined}
* @api
*/
olx.format.WFSOptions.prototype.gmlFormat;
/** /**
* Optional schemaLocation to use for serialization, this will override the * Optional schemaLocation to use for serialization, this will override the
* default. * default.
@@ -1747,12 +1756,6 @@ olx.format.WFSWriteGetFeatureOptions.prototype.maxFeatures;
*/ */
olx.format.WFSWriteGetFeatureOptions.prototype.geometryName; olx.format.WFSWriteGetFeatureOptions.prototype.geometryName;
/**
* GML format to use within the WFS format.
* @type {ol.format.GMLBase|undefined}
* @api
*/
olx.format.WFSWriteGetFeatureOptions.prototype.gmlFormat;
/** /**
* Extent to use for the BBOX filter. * Extent to use for the BBOX filter.