@@ -124,10 +118,10 @@
}
kv('Coverage' , ($aPointDetails['isarea']=='t'?'Polygon':'Point') );
kv('Centre Point' , $aPointDetails['lat'].','.$aPointDetails['lon'] );
- kv('OSM' , osm_link($aPointDetails) );
+ kv('OSM' , osmLink($aPointDetails) );
if ($aPointDetails['wikipedia'])
{
- kv('Wikipedia Calculated' , wikipedia_link($aPointDetails) );
+ kv('Wikipedia Calculated' , wikipediaLink($aPointDetails) );
}
kv('Extra Tags' , hash_to_subtable($aPointDetails['aExtraTags']) );
@@ -154,7 +148,6 @@
Type |
OSM |
Admin level |
-
Distance |
|
@@ -169,8 +162,6 @@
}
?>
-
-
';
foreach($aLinkedLines as $aAddressLine)
{
_one_row($aAddressLine);
}
- echo '';
}
@@ -193,7 +182,7 @@
headline('Name Keywords');
foreach($aPlaceSearchNameKeywords as $aRow)
{
- echo '
'.$aRow['word_token']."
\n";
+ _one_keyword_row($aRow['word_token'], $aRow['word_id']);
}
}
@@ -202,10 +191,10 @@
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']);
}
}
-
+
if (sizeof($aParentOfLines))
{
headline('Parent Of');
@@ -223,47 +212,47 @@
foreach($aGroupedAddressLines as $sGroupHeading => $aParentOfLines)
{
$sGroupHeading = ucwords($sGroupHeading);
- echo "
$sGroupHeading
\n";
+ headline3($sGroupHeading);
- echo '
';
foreach($aParentOfLines as $aAddressLine)
{
_one_row($aAddressLine);
}
- echo '
';
}
if (sizeof($aParentOfLines) >= 500) {
echo '
There are more child objects which are not shown.
';
}
}
- // headline('Other Parts');
- // headline('Linked To');
+ echo "\n";
?>