Elasticsearch - Mappings and Data Types
Given this Elasticsearch document indexed with a geo_point field location:
{ "location": { "lat": 40.7128, "lon": -74.0060 } }Which query will correctly find documents within 10km of this point?
Given this Elasticsearch document indexed with a geo_point field location:
{ "location": { "lat": 40.7128, "lon": -74.0060 } }Which query will correctly find documents within 10km of this point?
geo_point, geo_distance query finds documents within a distance from a point.geo_distance with correct distance and point coordinates.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions