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
251 B
14 lines
251 B
10 years ago
|
/**
|
||
|
* These values specify how much a document that matches a certain _type
|
||
|
* should be boosted in elasticsearch results.
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
'admin0': 4,
|
||
|
'admin1': 3,
|
||
|
'admin2': 2,
|
||
|
'local_admin': 1,
|
||
|
'locality':1,
|
||
|
'neighborhood':1
|
||
|
};
|