X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/1560685020f7c19eeee6d28b12a863cd0c6b6592..c386cca73f3fd1e10681f3f157544e46d74e5b48:/website/lookup.php diff --git a/website/lookup.php b/website/lookup.php index e5f01232..db2c01d6 100644 --- a/website/lookup.php +++ b/website/lookup.php @@ -53,6 +53,18 @@ foreach ($aOsmIds as $sItem) { unset($oResult['langaddress']); $oResult['name'] = $oPlace['langaddress']; } + + $aOutlineResult = $oPlaceLookup->getOutlines( + $oPlace['place_id'], + $oPlace['lon'], + $oPlace['lat'], + Nominatim\ClassTypes\getDefRadius($oPlace) + ); + + if ($aOutlineResult) { + $oResult = array_merge($oResult, $aOutlineResult); + } + $aSearchResults[] = $oResult; } } @@ -69,5 +81,7 @@ $bShowPolygons = ''; $aExcludePlaceIDs = array(); $sMoreURL = ''; +logEnd($oDB, $hLog, 1); + $sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php');