WfsFeatureRequest interface
Options for requesting features from a WFS service.
Properties
bbox | Bounding Box limit. Must not be used with Filter. |
count | Number of features to retrieve when paging. |
cql_filter | A custom CQL filter to append to the request. |
custom |
A key-value object containing additional parameters to append the request. |
fallback |
Specifies which SRS value to use if a valid one is not specified in the capabilities. Some WFS services support reprojection on the fly and thus do not list every possible supported SRS. If set to null, and not supported SRS found in capabilities, an error will be thrown. Default: 'urn:ogc:def:crs:EPSG::4326' |
feature |
The id of a feature to retrieve. |
filter | Filter condition. Must not be used with BBOX option. |
property |
A comma delimited list of property names to return. |
sort |
Method describing how results should be sorted. |
start |
Start index to use for WFS paging. |
type |
The feature type names. |
Property Details
bbox
Bounding Box limit. Must not be used with Filter.
bbox?: azmaps.data.BoundingBox
Property Value
count
Number of features to retrieve when paging.
count: number
Property Value
number
cql_filter
A custom CQL filter to append to the request.
cql_filter?: string
Property Value
string
customDimensions
A key-value object containing additional parameters to append the request.
customDimensions?: Record<string, string>
Property Value
Record<string, string>
fallbackSrs
Specifies which SRS value to use if a valid one is not specified in the capabilities. Some WFS services support reprojection on the fly and thus do not list every possible supported SRS. If set to null, and not supported SRS found in capabilities, an error will be thrown. Default: 'urn:ogc:def:crs:EPSG::4326'
fallbackSrs?: string
Property Value
string
featureId
The id of a feature to retrieve.
featureId?: string
Property Value
string
filter
propertyNames
A comma delimited list of property names to return.
propertyNames?: string
Property Value
string
sortBy
Method describing how results should be sorted.
sortBy: string
Property Value
string
startIndex
Start index to use for WFS paging.
startIndex: number
Property Value
number
typeNames
The feature type names.
typeNames?: string | string[]
Property Value
string | string[]