mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
840 B
44 lines
840 B
var vs = require('../../../query/reverse_defaults'); |
|
|
|
module.exports = { |
|
'query': { |
|
'bool': { |
|
'must': [ |
|
{ |
|
'match': { |
|
'parent.country_a': { |
|
'analyzer': 'standard', |
|
'query': 'ABC' |
|
} |
|
} |
|
} |
|
], |
|
'filter': [{ |
|
'geo_distance': { |
|
'distance': '500km', |
|
'distance_type': 'plane', |
|
'optimize_bbox': 'indexed', |
|
'center_point': { |
|
'lat': 29.49136, |
|
'lon': -82.50622 |
|
} |
|
} |
|
}] |
|
} |
|
}, |
|
'sort': [ |
|
'_score', |
|
{ |
|
'_geo_distance': { |
|
'center_point': { |
|
'lat': 29.49136, |
|
'lon': -82.50622 |
|
}, |
|
'order': 'asc', |
|
'distance_type': 'plane' |
|
} |
|
} |
|
], |
|
'size': vs.size, |
|
'track_scores': true |
|
};
|
|
|