X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2a784fa3d4533d11e3227f868085dcee5a9870c6..9454761cca4bb3a2b0fa997797054d67078a2fcc:/lib/output.php diff --git a/lib/output.php b/lib/output.php index 983e3440..9d4b7502 100644 --- a/lib/output.php +++ b/lib/output.php @@ -1,5 +1,6 @@ '.($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 ''; +}