From 2767821cb0669a23cbd4835dd292c312f160edc0 Mon Sep 17 00:00:00 2001 From: Brian Quinion Date: Sun, 20 Mar 2011 23:34:36 +0000 Subject: [PATCH] output importance on details.php page --- lib/template/details-html.php | 1 + website/details.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/template/details-html.php b/lib/template/details-html.php index e536e202..b89bf747 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -108,6 +108,7 @@ foreach($aPolyPoints as $aPolyPoint) echo '
Type: '.$aPointDetails['class'].':'.$aPointDetails['type'].'
'; echo '
Admin Level: '.$aPointDetails['admin_level'].'
'; echo '
Rank: '.$aPointDetails['rank_search_label'].'
'; + if ($aPointDetails['importance']) echo '
Importance: '.$aPointDetails['importance'].'
'; 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'].'
'; diff --git a/website/details.php b/website/details.php index 2e5a6c9f..a4a2ae5e 100755 --- a/website/details.php +++ b/website/details.php @@ -43,7 +43,7 @@ //$oDB->query($sSQL); // Get the details for this point - $sSQL = "select place_id, osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, "; + $sSQL = "select place_id, osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, importance,"; $sSQL .= " parent_place_id, rank_address, rank_search, get_searchrank_label(rank_search) as rank_search_label, get_name_by_language(name,$sLanguagePrefArraySQL) as localname, "; $sSQL .= " ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea,ST_GeometryType(geometry) as geotype, ST_Y(ST_Centroid(geometry)) as lat,ST_X(ST_Centroid(geometry)) as lon "; $sSQL .= " from placex where place_id = $iPlaceID"; -- 2.39.5