X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b0ed31b6d48da40f90d3fd0e0aa71394984a6c76..84a5f2779aed7890ba1d844464ce502dbb98a966:/lib/template/details-html.php diff --git a/lib/template/details-html.php b/lib/template/details-html.php index 8bef4791..f20ec619 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -33,7 +33,6 @@ body { - @@ -112,6 +111,11 @@ foreach($aPolyPoints as $aPolyPoint) echo '
Coverage: '.($aPointDetails['isarea']=='t'?'Polygon':'Point').'
'; $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':''))); if ($sOSMType) echo '
OSM: '.$sOSMType.' '.$aPointDetails['osm_id'].'
'; + if ($aPointDetails['wikipedia']) + { + list($sWikipediaLanguage,$sWikipediaArticle) = explode(':',$aPointDetails['wikipedia']); + echo '
Wikipedia Calculated: '.$aPointDetails['wikipedia'].'
'; + } echo '
Extra Tags: '; foreach($aPointDetails['aExtraTags'] as $sKey => $sValue) { @@ -139,8 +143,8 @@ foreach($aPolyPoints as $aPolyPoint) echo 'Type: '.$aAddressLine['class'].':'.$aAddressLine['type'].''; if ($sOSMType) echo ', '.$sOSMType.' '.$aAddressLine['osm_id'].''; echo ', '.$aAddressLine['admin_level'].''; - echo ', '.$aAddressLine['rank_search_label'].''; - echo ', '.($aAddressLine['fromarea']=='t'?'Polygon':'Point').''; + if (isset($aAddressLine['rank_search_label'])) echo ', '.$aAddressLine['rank_search_label'].''; +// echo ', '.($aAddressLine['fromarea']=='t'?'Polygon':'Point').''; echo ', '.$aAddressLine['distance'].''; echo ' GOTO'; echo ')'; @@ -148,9 +152,51 @@ foreach($aPolyPoints as $aPolyPoint) } echo '
'; + if ($aLinkedLines) + { + echo '

Linked Places

'; + echo '
'; + foreach($aLinkedLines as $aAddressLine) + { + $sOSMType = ($aAddressLine['osm_type'] == 'N'?'node':($aAddressLine['osm_type'] == 'W'?'way':($aAddressLine['osm_type'] == 'R'?'relation':''))); + + echo '
'; + echo ''.(trim($aAddressLine['localname'])?$aAddressLine['localname']:'No Name').''; + echo ' ('; + echo 'Type: '.$aAddressLine['class'].':'.$aAddressLine['type'].''; + if ($sOSMType) echo ', '.$sOSMType.' '.$aAddressLine['osm_id'].''; + echo ', '.$aAddressLine['admin_level'].''; + echo ', '.$aAddressLine['rank_search_label'].''; +// echo ', '.($aAddressLine['fromarea']=='t'?'Polygon':'Point').''; + echo ', '.$aAddressLine['distance'].''; + echo ' GOTO'; + echo ')'; + echo '
'; + } + 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):

'; + echo '

Parent Of:

'; $aGroupedAddressLines = array(); foreach($aParentOfLines as $aAddressLine) @@ -181,6 +227,9 @@ foreach($aPolyPoints as $aPolyPoint) echo ''; } } + if (sizeof($aParentOfLines) >= 500) { + echo '

There are more child objects which are not shown.

'; + } echo ''; }