Enum elasticsearch_dsl::search::params::GeoPoint [−][src]
Expand description
Fields of type geo_point accept latitude-longitude pairs.
It can be used:
- to find geo-points within a bounding box , within a certain distance of a central point, or within a polygon or within a geo_shape query.
- to aggregate documents geographically or by distance from a central point.
- to integrate distance into a document’s relevance score.
- to sort documents by distance.
https://www.elastic.co/guide/en/elasticsearch/reference/current/geo-point.html
Variants
Geo-point expressed as an array with the format: [lon, lat]
Fields of Coordinates
Geohash(String)Geo-point expressed as a geohash
Tuple Fields of Geohash
0: StringImplementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for GeoPoint
impl UnwindSafe for GeoPoint
Blanket Implementations
Mutably borrows from an owned value. Read more