OptionalcodecThe Codec used to convert the server response into LuciadRIA feature instances.
If not specified, the codec is automatically derived from the outputFormat.
If outputFormat is also not set, GeoJsonCodec is used by default.
Provide a custom codec if you want to support a different response format.
Since this Store implementation is read-only, the codec only needs to implement the decode() method.
OptionalcredentialsDetermines whether the browser sends credentials with the request
Can be either a boolean or a RequestCredentials value:
true: maps to "include" - credentials are included in both same-origin and cross-origin requestsfalse: maps to "same-origin" - credentials are only included in same-origin requests"include": credentials are included in both same-origin and cross-origin requests"same-origin": credentials are only included in same-origin requests"omit": credentials are never included in requestsOptionalgeometryA geometry property name that is used in the BBOX OGC filter when querying WFS service. The spatial filter can contain an optional geometry property name, which refers to the property that should be used to retrieve a feature's geometry.
OptionalmethodsThe HTTP methods that can be used to communicate with the server. The store supports GET and POST.
OptionaloutputConfigures the outputFormat parameter on the request.
Use this parameter if the server requires a different outputFormat to return GeoJSON-encoded data,
or if you want to support another format.
Note that the value of outputFormat is also used to determine the appropriate codec,
GeoJsonCodec or GMLCodec used by this store.
The default value is application/json.
The reference in which the Feature instances will be defined when querying this store. This should match the reference of the FeatureModel on which this Store is used. This reference is passed to the Codec.decode method, so that the codec will decode Feature objects with the correct reference.
This reference must match the default CRS listed in the capabilities of the WFS service. Please use the WFSFeatureStore.createFromURL or WFSFeatureStore.createFromCapabilities utility methods to create an instance of this store that guarantees the right reference.
OptionalrequestAn object literal that represents headers (as a key-value map) to send with each HTTP request. If set (and not empty), an XHR with the specified headers will be performed instead of creating an Image.
OptionalrequestAn object literal that represents URL parameters (as a key-value map) to send with each HTTP request. If set (and not empty), an XHR with the specified query parameters will be performed instead of creating an Image.
The location of the WFS service endpoint.
OptionalsplitIndicates whether the BBOX filter should be split when it contains the anti-meridian. If true, two BBOX filters are created and combined with an OR operator.
OptionalswapIndicates whether this Store should swap the axis ordering of coordinates for the specified reference identifier(s) in the OGC BBOX filter when querying the WFS service. If undefined, the axis ordering dictated by the model reference is respected. For each specified reference, the order will be reversed.
This is typically required for EPSG:4326 data encoded in longitude–latitude order instead of
the expected latitude–longitude order.
The name of the feature type this query will be requesting from the server. The type name should be specified as
either a string or a QName object. A QName object is a JavaScript object that contains three string properties:
prefix, namespace, localPart.
OptionalversionsAn array of WFS versions that the server supports. By default, the WFSFeatureStore will select the most
appropriate version to communicate with the server.
Use this option if you want to explicitly specify which WFS version to use.
The order of the versions determines which version is selected, based on the versions supported by the server.
Constructor options for WFSFeatureStore.