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.
17 lines
371 B
17 lines
371 B
/** |
|
* These values specify how much a record that matches a certain category |
|
* should be boosted in elasticsearch results. |
|
*/ |
|
|
|
module.exports.default = { |
|
'transport:air': 2, |
|
'transport:air:aerodrome': 2, |
|
'transport:air:airport': 2, |
|
'admin': 2 |
|
}; |
|
|
|
module.exports.address = { |
|
'transport:air': 2, |
|
'transport:air:aerodrome': 2, |
|
'transport:air:airport': 2 |
|
};
|
|
|