X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e5909cc78a816f496e4a9f750c6dd830f0f28876..921cc233890705d6a916fa415b51fdd88fa8fe11:/lib/template/details-html.php?ds=sidebyside diff --git a/lib/template/details-html.php b/lib/template/details-html.php index 3eaca8ad..ba41b931 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -1,40 +1,15 @@ - + + OpenStreetMap Nominatim: <?php echo $aPointDetails['localname'];?> - - - + + + @@ -109,12 +91,14 @@ if (isset($aPolyPoints)) } 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']); @@ -129,7 +113,7 @@ if (isset($aPolyPoints)) echo ''; echo '

Address

'; - echo '
'; + echo '
'; $iPrevRank = 1000000; $sPrevLocalName = ''; foreach($aAddressLines as $aAddressLine) @@ -145,9 +129,9 @@ if (isset($aPolyPoints)) 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'].''; + 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'; @@ -231,6 +215,9 @@ if (isset($aPolyPoints)) echo '
'; } } + if (sizeof($aParentOfLines) >= 500) { + echo '

There are more child objects which are not shown.

'; + } echo '
'; }