Skip to content

Instantly share code, notes, and snippets.

@sebhomengo
Created March 11, 2013 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebhomengo/5136451 to your computer and use it in GitHub Desktop.
Save sebhomengo/5136451 to your computer and use it in GitHub Desktop.
ElasticSearch geo_distance query
{
"query": {
"filtered": {
"query": {
"term" : { "amenity" : "restaurant" }
},
"filter": {
"geo_distance": {
"distance": "0.3km",
"location": {
"lat": "48.231249",
"lon": "2.30998"
},
"distance_type": "plane"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment