X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/deefdde24b63ad4e446c67cff255cad6ba0feb1f..fc96bee063c26ade2cdc89f255de580de9d43009:/settings/settings.php diff --git a/settings/settings.php b/settings/settings.php index ccf75f87..765849e7 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -93,6 +93,8 @@ @define('CONST_Default_Lat', 20.0); @define('CONST_Default_Lon', 0.0); @define('CONST_Default_Zoom', 2); + @define('CONST_Map_Tile_URL', 'http://{s}.tile.osm.org/{z}/{x}/{y}.png'); + @define('CONST_Map_Tile_Attribution', ''); // Set if tile source isn't osm.org @define('CONST_Search_AreaPolygons_Enabled', true); @define('CONST_Search_AreaPolygons', true); @@ -101,6 +103,11 @@ @define('CONST_Search_TryDroppedAddressTerms', false); @define('CONST_Search_NameOnlySearchFrequencyThreshold', 500); + // If set to true, then reverse order of queries will be tried by default. + // When set to false only selected languages alloow reverse search. + @define('CONST_Search_ReversePlanForAll', true); + + @define('CONST_Places_Max_ID_count', 50); // Set to zero to disable polygon output @define('CONST_PolygonOutput_MaximumTypes', 1); @@ -111,3 +118,5 @@ @define('CONST_Log_File_Format', 'TODO'); // Currently hard coded @define('CONST_Log_File_SearchLog', ''); @define('CONST_Log_File_ReverseLog', ''); + +