mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
21 lines
531 B
PHP
21 lines
531 B
PHP
<?php
|
|
|
|
// These settings control the import of special phrases from the wiki.
|
|
|
|
// class/type combinations to exclude
|
|
$aTagsBlacklist
|
|
= array(
|
|
'boundary' => array('administrative'),
|
|
'place' => array('house', 'houses'),
|
|
);
|
|
|
|
// If a class is in the white list then all types will
|
|
// be ignored except the ones given in the list.
|
|
// Also use this list to exclude an entire class from
|
|
// special phrases.
|
|
$aTagsWhitelist
|
|
= array(
|
|
'highway' => array('bus_stop', 'rest_area', 'raceway'),
|
|
'building' => array(),
|
|
);
|