Skip to content

Instantly share code, notes, and snippets.

@rishiloyola
Created October 18, 2015 06:48
Show Gist options
  • Save rishiloyola/9099f8eb59825feaa08d to your computer and use it in GitHub Desktop.
Save rishiloyola/9099f8eb59825feaa08d to your computer and use it in GitHub Desktop.
Geo Diastance filter
streamingClient.search({
index: 'checkin',
type: 'city',
body: {
query : {
match_all : {}
},
filter : {
geo_distance : {
distance : "12km",
location : [$scope.objMapa.getCenter().lat(),$scope.objMapa.getCenter().lng()]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment