X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b0ed31b6d48da40f90d3fd0e0aa71394984a6c76..2eccb0e69dd4e443ec534fb9baa374b76ee7e57f:/lib/template/details-html.php?ds=inline diff --git a/lib/template/details-html.php b/lib/template/details-html.php index 8bef4791..a02d3abf 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -148,6 +148,24 @@ foreach($aPolyPoints as $aPolyPoint) } echo ''; + if ($aPlaceSearchNameKeywords) + { + echo '

Name Keywords

'; + foreach($aPlaceSearchNameKeywords as $aRow) + { + echo '
'.$aRow['word_token'].'
'; + } + } + + if ($aPlaceSearchAddressKeywords) + { + echo '

Address Keywords

'; + foreach($aPlaceSearchAddressKeywords as $aRow) + { + echo '
'.($aRow['word_token'][0]==' '?'*':'').$aRow['word_token'].'('.$aRow['word_id'].')'.'
'; + } + } + if (sizeof($aParentOfLines)) { echo '

Parent Of (named features only):

';