X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4bb56d98a8409d5708b599ceded5381bfd99339e..d1f266509a9fb6869b5921e7427fcad29ccadd66:/lib/template/details-html.php diff --git a/lib/template/details-html.php b/lib/template/details-html.php index a4619b55..b56f3989 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -1,40 +1,15 @@ - + + OpenStreetMap Nominatim: <?php echo $aPointDetails['localname'];?> - - - + + + @@ -113,12 +92,14 @@ body { } 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']); @@ -133,7 +114,7 @@ body { echo ''; echo '

Address

'; - echo '
'; + echo '
'; $iPrevRank = 1000000; $sPrevLocalName = ''; foreach($aAddressLines as $aAddressLine) @@ -149,9 +130,9 @@ body { 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'].''; - if (isset($aAddressLine['rank_search_label']) echo ', '.$aAddressLine['rank_search_label'].''; + 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';