X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/d3c883f1b5e1db91997ec5c4fe4a631e7135dc3f..b544a8c590a9a9b5e86ac95260831bfadd7ba1d7:/lib/template/details-html.php diff --git a/lib/template/details-html.php b/lib/template/details-html.php index 721af44d..83df4814 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -1,41 +1,15 @@ - + + OpenStreetMap Nominatim: <?php echo $aPointDetails['localname'];?> - - - - + + + @@ -95,7 +80,7 @@ foreach($aPolyPoints as $aPolyPoint) echo '

'; if ($aPointDetails['icon']) { - echo ''; + echo ''.$aPointDetails['icon'].''; } echo $aPointDetails['localname'].'

'; echo '
'; @@ -106,12 +91,19 @@ foreach($aPolyPoints as $aPolyPoint) } echo '
'; echo '
Type: '.$aPointDetails['class'].':'.$aPointDetails['type'].'
'; + echo '
Last Updated: '.$aPointDetails['indexed_date'].'
'; echo '
Admin Level: '.$aPointDetails['admin_level'].'
'; echo '
Rank: '.$aPointDetails['rank_search_label'].'
'; - if ($aPointDetails['importance']) echo '
Importance: '.$aPointDetails['importance'].'
'; + if ($aPointDetails['calculated_importance']) echo '
Importance: '.$aPointDetails['calculated_importance'].($aPointDetails['importance']?'':' (estimated)').'
'; echo '
Coverage: '.($aPointDetails['isarea']=='t'?'Polygon':'Point').'
'; + echo '
Centre Point: '.$aPointDetails['lat'].','.$aPointDetails['lon'].'
'; $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 ($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) { @@ -121,7 +113,7 @@ foreach($aPolyPoints as $aPolyPoint) echo '
'; echo '

Address

'; - echo '
'; + echo '
'; $iPrevRank = 1000000; $sPrevLocalName = ''; foreach($aAddressLines as $aAddressLine) @@ -137,10 +129,10 @@ foreach($aPolyPoints as $aPolyPoint) 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').''; + if ($sOSMType) echo ', '.$sOSMType.' '.$aAddressLine['osm_id'].''; + if (isset($aAddressLine['admin_level'])) echo ', '.$aAddressLine['admin_level'].''; + if (isset($aAddressLine['rank_search_label'])) echo ', '.$aAddressLine['rank_search_label'].''; +// echo ', '.($aAddressLine['fromarea']=='t'?'Polygon':'Point').''; echo ', '.$aAddressLine['distance'].''; echo ' GOTO'; echo ')'; @@ -148,6 +140,30 @@ 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

'; @@ -168,7 +184,7 @@ foreach($aPolyPoints as $aPolyPoint) if (sizeof($aParentOfLines)) { - echo '

Parent Of (named features only):

'; + echo '

Parent Of:

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

There are more child objects which are not shown.

'; + } echo ''; }