X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c2b68c337b398aff21bc04d51b83f42608bbbbc8..f0f6fcf256c83176dbcda0d0fd4fec977ea8a0ad:/lib/template/details-html.php
diff --git a/lib/template/details-html.php b/lib/template/details-html.php
index d5c18252..ae36b411 100644
--- a/lib/template/details-html.php
+++ b/lib/template/details-html.php
@@ -6,7 +6,6 @@
-
';
- // foreach($aAssociatedList as $sKey => $sValue)
- // {
- // $sHTML = $sHTML . '
'.$sKey.' '.$sValue.' '."\n";
- // }
- // $sHTML = $sHTML . '';
- // return $sHTML;
- // }
-
-
function map_icon($sIcon)
{
if ($sIcon){
@@ -107,18 +94,30 @@
echo ' ' . $aAddressLine['class'].':'.$aAddressLine['type'] . " \n";
echo ' ' . osm_link($aAddressLine) . " \n";
echo ' ' . (isset($aAddressLine['admin_level']) ? $aAddressLine['admin_level'] : '') . " \n";
- // echo '' . (isset($aAddressLine['rank_search_label']) ? $aAddressLine['rank_search_label'] : '') ." \n";
- // echo ', '.($aAddressLine['fromarea']=='t'?'Polygon':'Point').' ';
echo ' ' . format_distance($aAddressLine['distance'])." \n";
echo ' ' . nominatim_link($aAddressLine,'details >') . " \n";
echo "\n";
}
+ function _one_keyword_row($keyword_token,$word_id){
+ echo "\n";
+ echo '';
+ // mark partial tokens (those starting with a space) with a star for readability
+ echo ($keyword_token[0]==' '?'*':'');
+ echo $keyword_token;
+ if (isset($word_id))
+ {
+ echo ' word id: '.$word_id;
+ }
+ echo " \n";
+ }
+
?>
+
@@ -174,7 +173,6 @@
Type
OSM
Admin level
-
Distance
@@ -209,7 +207,7 @@
headline('Name Keywords');
foreach($aPlaceSearchNameKeywords as $aRow)
{
- echo '
'.$aRow['word_token']."
\n";
+ _one_keyword_row($aRow['word_token'], $aRow['word_id']);
}
}
@@ -218,7 +216,7 @@
headline('Address Keywords');
foreach($aPlaceSearchAddressKeywords as $aRow)
{
- echo '
'.($aRow['word_token'][0]==' '?'*':'').$aRow['word_token'].'('.$aRow['word_id'].')'."
\n";
+ _one_keyword_row($aRow['word_token'], $aRow['word_id']);
}
}
@@ -251,9 +249,6 @@
}
}
- // headline('Other Parts');
- // headline('Linked To');
-
echo "\n";
?>
@@ -262,13 +257,23 @@