public interface SpatialWithinPredicateAreaStep
| Modifier and Type | Method and Description |
|---|---|
default SpatialWithinPredicateOptionsStep |
boundingBox(double topLeftLatitude,
double topLeftLongitude,
double bottomRightLatitude,
double bottomRightLongitude)
Require at least one of the targeted fields to point to a location within the given box (~rectangle).
|
SpatialWithinPredicateOptionsStep |
boundingBox(GeoBoundingBox boundingBox)
Require at least one of the targeted fields to point to a location within the given box (~rectangle).
|
default SpatialWithinPredicateOptionsStep |
circle(double latitude,
double longitude,
double radiusInMeters)
Require at least one of the targeted fields to point to a location within the given circle,
i.e.
|
default SpatialWithinPredicateOptionsStep |
circle(double latitude,
double longitude,
double radius,
DistanceUnit unit)
Require at least one of the targeted fields to point to a location within the given circle,
i.e.
|
default SpatialWithinPredicateOptionsStep |
circle(GeoPoint center,
double radiusInMeters)
Require at least one of the targeted fields to point to a location within the given circle,
i.e.
|
SpatialWithinPredicateOptionsStep |
circle(GeoPoint center,
double radius,
DistanceUnit unit)
Require at least one of the targeted fields to point to a location within the given circle,
i.e.
|
SpatialWithinPredicateOptionsStep |
polygon(GeoPolygon polygon)
Require at least one of the targeted fields to point to a location within the given polygon.
|
SpatialWithinPredicateOptionsStep circle(GeoPoint center, double radius, DistanceUnit unit)
center - The center of the bounding circle.radius - The radius of the bounding circle, in the unit defined by parameter unit.unit - The unit used for the radius.default SpatialWithinPredicateOptionsStep circle(GeoPoint center, double radiusInMeters)
center - The center of the bounding circle.radiusInMeters - The radius of the bounding circle, in meters.default SpatialWithinPredicateOptionsStep circle(double latitude, double longitude, double radius, DistanceUnit unit)
latitude - The latitude of the center of the bounding circle.longitude - The longitude of the center of the bounding circle.radius - The radius of the bounding circle, in the unit defined by parameter unit.unit - The unit used for the radius.default SpatialWithinPredicateOptionsStep circle(double latitude, double longitude, double radiusInMeters)
latitude - The latitude of the center of the bounding circle.longitude - The longitude of the center of the bounding circle.radiusInMeters - The radius of the bounding circle, in meters.SpatialWithinPredicateOptionsStep polygon(GeoPolygon polygon)
polygon - The bounding polygon.SpatialWithinPredicateOptionsStep boundingBox(GeoBoundingBox boundingBox)
boundingBox - The bounding box.default SpatialWithinPredicateOptionsStep boundingBox(double topLeftLatitude, double topLeftLongitude, double bottomRightLatitude, double bottomRightLongitude)
topLeftLatitude - The latitude of the top-left corner of the box.topLeftLongitude - The longitude of the top-left corner of the box.bottomRightLatitude - The latitude of the bottom-right corner of the box.bottomRightLongitude - The longitude of the bottom-right corner of the box.Copyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.