SpatialFluentFilter class
A fluent API for creating spatial filters.
Example:
var filter = where('location').intersects(geometry);
Constructors
- SpatialFluentFilter(String _field)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
intersects(
Geometry geometry) → Filter -
Creates a filter that matches documents whose field intersects the given
geometry
. -
near(
Center center, double radius) → Filter -
Creates a filter that matches documents whose field is near the given
center
within the givenradius
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
within(
Geometry geometry) → Filter -
Creates a filter that matches documents whose field is within the given
geometry
.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited