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.
14 lines
242 B
14 lines
242 B
9 years ago
|
/**
|
||
|
* These values specify how much a document that matches certain parts of an address
|
||
|
* should be boosted in elasticsearch results.
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
number: 1,
|
||
|
street: 3,
|
||
|
zip: 3,
|
||
|
admin2: 2,
|
||
|
admin1_abbr: 3,
|
||
|
alpha3: 5
|
||
|
};
|