X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8c3a0efe8b75a06279998e66a932d8a56c483961..2c909c1f0c7c6e6a176eb5cc15e8d6a45449ebe8:/website/lookup.php diff --git a/website/lookup.php b/website/lookup.php index 7675ae13..737edc62 100644 --- a/website/lookup.php +++ b/website/lookup.php @@ -1,9 +1,9 @@ getPreferredLanguages(); -$oDB = new Nominatim\DB(); +$oDB = new Nominatim\DB(CONST_Database_DSN); $oDB->connect(); $hLog = logStart($oDB, 'place', $_SERVER['QUERY_STRING'], $aLangPrefOrder); @@ -58,7 +58,7 @@ foreach ($aOsmIds as $sItem) { $oPlace['place_id'], $oPlace['lon'], $oPlace['lat'], - Nominatim\ClassTypes\getProperty($oPlace, 'defdiameter', 0.0001) + Nominatim\ClassTypes\getDefRadius($oPlace) ); if ($aOutlineResult) { @@ -84,4 +84,4 @@ $sMoreURL = ''; logEnd($oDB, $hLog, 1); $sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; -include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php'); +include(CONST_LibDir.'/template/search-'.$sOutputTemplate.'.php');