This namespace contains convenience functions to create filters for
ol.format.WFS#writeGetFeature.
For example to generate a GetFeature request with a PropertyIsEqualTo filter:
var request = new ol.format.WFS().writeGetFeature({
srsName: 'urn:ogc:def:crs:EPSG::4326',
featureNS: 'http://www.openplans.org/topp',
featurePrefix: 'topp',
featureTypes: ['states'],
filter: ol.format.filter.equalTo('name', 'New York')
});Or to combine a BBOX filter with a PropertyIsLike filter:
var f = ol.format.filter;
var request = new ol.format.WFS().writeGetFeature({
srsName: 'urn:ogc:def:crs:EPSG::4326',
featureNS: 'http://www.openplans.org/topp',
featurePrefix: 'topp',
featureTypes: ['states'],
filter: f.and(
f.bbox('the_geom', [1, 2, 3, 4], 'urn:ogc:def:crs:EPSG::4326'),
f.like('name', 'New*')
)
});Classes
- And
- Bbox
- Comparison
- ComparisonBinary
- EqualTo
- Filter
- GreaterThan
- GreaterThanOrEqualTo
- Intersects
- IsBetween
- IsLike
- IsNull
- LessThan
- LessThanOrEqualTo
- Logical
- LogicalBinary
- Not
- NotEqualTo
- Or
- Spatial
- Within
Methods
-
ol.format.filter.and(conditionA, conditionB){ol.format.filter.And} experimental
src/ol/format/filter/index.js, line 29 -
Create a logical
<And>operator between two filter conditions.Name Type Description conditionAol.format.filter.Filter First filter condition.
conditionBol.format.filter.Filter Second filter condition.
Returns:
<And>operator.
-
ol.format.filter.bbox(geometryName, extent, opt_srsName){ol.format.filter.Bbox} experimental
src/ol/format/filter/index.js, line 70 -
Create a
<BBOX>operator to test whether a geometry-valued property intersects a fixed bounding boxName Type Description geometryNamestring Geometry name to use.
extentol.Extent Extent.
srsNamestring SRS name. No srsName attribute will be set on geometries when this is not provided.
Returns:
<BBOX>operator.
-
ol.format.filter.between(propertyName, lowerBoundary, upperBoundary){ol.format.filter.IsBetween} experimental
src/ol/format/filter/index.js, line 208 -
Creates a
<PropertyIsBetween>comparison operator to test whether an expression value lies within a range given by a lower and upper bound (inclusive).Name Type Description propertyNamestring Name of the context property to compare.
lowerBoundarynumber The lower bound of the range.
upperBoundarynumber The upper bound of the range.
Returns:
<PropertyIsBetween>operator.
-
ol.format.filter.equalTo(propertyName, expression, opt_matchCase){ol.format.filter.EqualTo} experimental
src/ol/format/filter/index.js, line 114 -
Creates a
<PropertyIsEqualTo>comparison operator.Name Type Description propertyNamestring Name of the context property to compare.
expressionstring | number The value to compare.
matchCaseboolean Case-sensitive?
Returns:
<PropertyIsEqualTo>operator.
-
ol.format.filter.greaterThan(propertyName, expression){ol.format.filter.GreaterThan} experimental
src/ol/format/filter/index.js, line 167 -
Creates a
<PropertyIsGreaterThan>comparison operator.Name Type Description propertyNamestring Name of the context property to compare.
expressionnumber The value to compare.
Returns:
<PropertyIsGreaterThan>operator.
-
ol.format.filter.greaterThanOrEqualTo(propertyName, expression){ol.format.filter.GreaterThanOrEqualTo} experimental
src/ol/format/filter/index.js, line 180 -
Creates a
<PropertyIsGreaterThanOrEqualTo>comparison operator.Name Type Description propertyNamestring Name of the context property to compare.
expressionnumber The value to compare.
Returns:
<PropertyIsGreaterThanOrEqualTo>operator.
-
ol.format.filter.intersects(geometryName, geometry, opt_srsName){ol.format.filter.Intersects} experimental
src/ol/format/filter/index.js, line 85 -
Create a
<Intersects>operator to test whether a geometry-valued property intersects a given geometry.Name Type Description geometryNamestring Geometry name to use.
geometryol.geom.Geometry Geometry.
srsNamestring SRS name. No srsName attribute will be set on geometries when this is not provided.
Returns:
<Intersects>operator.
-
ol.format.filter.isNull(propertyName){ol.format.filter.IsNull} experimental
src/ol/format/filter/index.js, line 193 -
Creates a
<PropertyIsNull>comparison operator to test whether a property value is null.Name Type Description propertyNamestring Name of the context property to compare.
Returns:
<PropertyIsNull>operator.
-
ol.format.filter.lessThan(propertyName, expression){ol.format.filter.LessThan} experimental
src/ol/format/filter/index.js, line 141 -
Creates a
<PropertyIsLessThan>comparison operator.Name Type Description propertyNamestring Name of the context property to compare.
expressionnumber The value to compare.
Returns:
<PropertyIsLessThan>operator.
-
ol.format.filter.lessThanOrEqualTo(propertyName, expression){ol.format.filter.LessThanOrEqualTo} experimental
src/ol/format/filter/index.js, line 154 -
Creates a
<PropertyIsLessThanOrEqualTo>comparison operator.Name Type Description propertyNamestring Name of the context property to compare.
expressionnumber The value to compare.
Returns:
<PropertyIsLessThanOrEqualTo>operator.
-
ol.format.filter.like(propertyName, pattern, opt_wildCard, opt_singleChar, opt_escapeChar, opt_matchCase){ol.format.filter.IsLike} experimental
src/ol/format/filter/index.js, line 229 -
Represents a
<PropertyIsLike>comparison operator that matches a string property value against a text pattern.Name Type Description propertyNamestring Name of the context property to compare.
patternstring Text pattern.
wildCardstring Pattern character which matches any sequence of zero or more string characters. Default is '*'.
singleCharstring pattern character which matches any single string character. Default is '.'.
escapeCharstring Escape character which can be used to escape the pattern characters. Default is '!'.
matchCaseboolean Case-sensitive?
Returns:
<PropertyIsLike>operator.
-
ol.format.filter.not(condition){ol.format.filter.Not} experimental
src/ol/format/filter/index.js, line 54 -
Represents a logical
<Not>operator for a filter condition.Name Type Description conditionol.format.filter.Filter Filter condition.
Returns:
<Not>operator.
-
ol.format.filter.notEqualTo(propertyName, expression, opt_matchCase){ol.format.filter.NotEqualTo} experimental
src/ol/format/filter/index.js, line 128 -
Creates a
<PropertyIsNotEqualTo>comparison operator.Name Type Description propertyNamestring Name of the context property to compare.
expressionstring | number The value to compare.
matchCaseboolean Case-sensitive?
Returns:
<PropertyIsNotEqualTo>operator.
-
ol.format.filter.or(conditionA, conditionB){ol.format.filter.Or} experimental
src/ol/format/filter/index.js, line 42 -
Create a logical
<Or>operator between two filter conditions.Name Type Description conditionAol.format.filter.Filter First filter condition.
conditionBol.format.filter.Filter Second filter condition.
Returns:
<Or>operator.
-
ol.format.filter.within(geometryName, geometry, opt_srsName){ol.format.filter.Within} experimental
src/ol/format/filter/index.js, line 100 -
Create a
<Within>operator to test whether a geometry-valued property is within a given geometry.Name Type Description geometryNamestring Geometry name to use.
geometryol.geom.Geometry Geometry.
srsNamestring SRS name. No srsName attribute will be set on geometries when this is not provided.
Returns:
<Within>operator.
OpenLayers 3