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.
69 lines
1.7 KiB
69 lines
1.7 KiB
var peliasQuery = require('pelias-query'), |
|
defaults = require('./reverse_defaults'), |
|
check = require('check-types'); |
|
|
|
//------------------------------ |
|
// reverse geocode query |
|
//------------------------------ |
|
var query = new peliasQuery.layout.FilteredBooleanQuery(); |
|
|
|
// mandatory matches |
|
query.score( peliasQuery.view.boundary_country, 'must' ); |
|
|
|
// scoring boost |
|
query.sort( peliasQuery.view.sort_distance ); |
|
|
|
// non-scoring hard filters |
|
query.filter( peliasQuery.view.boundary_circle ); |
|
|
|
// -------------------------------- |
|
|
|
function generateQuery( clean ){ |
|
|
|
var vs = new peliasQuery.Vars( defaults ); |
|
|
|
// set defaults |
|
vs.set({ |
|
'size': 1, |
|
'boundary:circle:radius': '500km' |
|
}); |
|
|
|
// set size |
|
if( clean.size ){ |
|
vs.var( 'size', clean.size ); |
|
} |
|
|
|
// focus point to score by distance |
|
if( check.number(clean['point.lat']) && |
|
check.number(clean['point.lon']) ){ |
|
vs.set({ |
|
'focus:point:lat': clean['point.lat'], |
|
'focus:point:lon': clean['point.lon'] |
|
}); |
|
} |
|
|
|
// bounding circle |
|
// note: the sanitizers will take care of the case |
|
// where point.lan/point.lon are provided in the |
|
// absense of boundary.circle.lat/boundary.circle.lon |
|
if( check.number(clean['boundary.circle.lat']) && |
|
check.number(clean['boundary.circle.lon']) && |
|
check.number(clean['boundary.circle.radius']) ){ |
|
vs.set({ |
|
'boundary:circle:lat': clean['boundary.circle.lat'], |
|
'boundary:circle:lon': clean['boundary.circle.lon'], |
|
'boundary:circle:radius': clean['boundary.circle.radius'] + 'km' |
|
}); |
|
} |
|
|
|
// boundary country |
|
if( check.string(clean['boundary.country']) ){ |
|
vs.set({ |
|
'boundary:country': clean['boundary.country'] |
|
}); |
|
} |
|
|
|
return query.render( vs ); |
|
} |
|
|
|
module.exports = generateQuery;
|
|
|