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.
24 lines
702 B
24 lines
702 B
9 years ago
|
module.exports = {
|
||
|
'USA': {
|
||
|
'local': ['localadmin', 'locality', 'neighbourhood', 'county'],
|
||
|
'regional': ['region_a', 'region'],
|
||
|
'country': ['country_a']
|
||
|
},
|
||
|
'GBR': {
|
||
|
'local': ['neighbourhood', 'county', 'localadmin', 'locality', 'region'],
|
||
|
'regional': ['county','country','region']
|
||
|
},
|
||
|
'SGP': {
|
||
|
'local': ['neighbourhood', 'region', 'county', 'localadmin', 'locality'],
|
||
|
'regional': ['county','country','region']
|
||
|
},
|
||
|
'SWE': {
|
||
|
'local': ['neighbourhood', 'region', 'county', 'localadmin', 'locality'],
|
||
|
'regional': ['country']
|
||
|
},
|
||
|
'default': {
|
||
|
'local': ['localadmin', 'locality', 'neighbourhood', 'county', 'region'],
|
||
|
'regional': ['country']
|
||
|
}
|
||
|
};
|