]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/output.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib / output.php
index 722d73b18aa79e80b4509fc6a4c165b6f60bca48..8de8157623516db94c4ca3c8ca8df303326961a0 100644 (file)
@@ -1,43 +1,18 @@
 <?php
 
-       function formatOSMType($sType, $bIncludeExternal=true)
-       {
-               if ($sType == 'N') return 'node';
-               if ($sType == 'W') return 'way';
-               if ($sType == 'R') return 'relation';
 
-               if (!$bIncludeExternal) return '';
+function formatOSMType($sType, $bIncludeExternal = true)
+{
+    if ($sType == 'N') return 'node';
+    if ($sType == 'W') return 'way';
+    if ($sType == 'R') return 'relation';
 
-               if ($sType == 'T') return 'tiger';
-               if ($sType == 'I') return 'way';
+    if (!$bIncludeExternal) return '';
 
-               return '';
-       }
+    if ($sType == 'T') return 'way';
+    if ($sType == 'I') return 'way';
 
-       function osmLink($aFeature, $sRefText=false)
-       {
-               $sOSMType = formatOSMType($aFeature['osm_type'], false);
-               if ($sOSMType)
-               {
-                       return '<a href="//www.openstreetmap.org/'.$sOSMType.'/'.$aFeature['osm_id'].'">'.$sOSMType.' '.($sRefText?$sRefText:$aFeature['osm_id']).'</a>';
-               }
-               return '';
-       }
-
-       function wikipediaLink($aFeature)
-       {
-               if ($aFeature['wikipedia'])
-               {
-                       list($sLanguage, $sArticle) = explode(':',$aFeature['wikipedia']);
-                       return '<a href="https://'.$sLanguage.'.wikipedia.org/wiki/'.urlencode($sArticle).'" target="_blank">'.$aFeature['wikipedia'].'</a>';
-               }
-               return '';
-       }
-
-       function detailsLink($aFeature, $sTitle=false)
-       {
-               if (!$aFeature['place_id']) return '';
-
-               return '<a href="details.php?place_id='.$aFeature['place_id'].'">'.($sTitle?$sTitle:$aFeature['place_id']).'</a>';
-       }
+    // not handled: P, L
 
+    return '';
+}