♠ Posted by Unknown
link
PUT /attractions
{
"mappings": {
"restaurant": {
"properties": {
"name": {
"type": "string"
},
"location": {
"type": "geo_point"
}
}
}
}
}
GET /attractions/restaurant/_search
{
"query": {
"filtered": {
"filter": {
"geo_distance": {
"distance": "120km",
"location": {
"lat": 40.73,
"lon": -74.1
}
}
}
}
},
"sort": [
{
"_geo_distance": {
...