X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/e686ce868062a70acfbdddc68c8f4384789f0a40..d9e0ef0ebfbc2860e7c0b7e7510a4014300074be:/lib/output.php diff --git a/lib/output.php b/lib/output.php index 58f00091..9d4b7502 100644 --- a/lib/output.php +++ b/lib/output.php @@ -9,7 +9,7 @@ function formatOSMType($sType, $bIncludeExternal = true) if (!$bIncludeExternal) return ''; - if ($sType == 'T') return 'tiger'; + if ($sType == 'T') return 'way'; if ($sType == 'I') return 'way'; return ''; @@ -39,3 +39,14 @@ function detailsLink($aFeature, $sTitle = false) return ''.($sTitle?$sTitle:$aFeature['place_id']).''; } + +function detailsPermaLink($aFeature, $sRefText = false) +{ + $sOSMType = formatOSMType($aFeature['osm_type'], false); + + if ($sOSMType) { + $sLabel = $sRefText ? $sRefText : $sOSMType.' '.$aFeature['osm_id']; + return ''.$sLabel.''; + } + return ''; +}