Object that defines and provides information about layers in a WFS service.

Referenced by: Web Feature Service Layer (WFS)

Properties

PropertyDetails
customParametersA sequence of parameters used to append custom parameters to all WFS requests. These parameters are applied to GetCapabilities, DescribeFeatureType, and GetFeatures.
featureUrlURL of the WFS service operation.
maxFeaturesSet this to limit the number of requested features that a GetFeature request presents.
nameThe name of the WFS layer. This is used to set layer visibility.
supportedSpatialReferences[]List of supported spatial reference IDs
swapXYBoolean value indicating whether X and Y axis are flipped.
versionValue indicating which version of the WFS specification is used.
wfsNamespaceString indicating namespace.

Web Feature Service Info Example

The WFSInfo as used within a WFS Layer

{
"version": "2.0.0",
"name": "countries",
"wfsNamespace": "http://opengeo.org/",
"featureUrl": "http://suite.opengeo/org/geoserver/wfs",
"customParameters": {
"token": "1ADE-FR54T"
},
"maxFeatures": 3000,
"swapXY": false,
"supportedSpatialReferences": [
4326,
26986
]
}