X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3abbeb5f081c648a6f2fe0213663627ad6b37198..a3728b718882dc1cbdf4e4e3853d938656d077e4:/lib/template/address-xml.php diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index 185601ad..a17da738 100644 --- a/lib/template/address-xml.php +++ b/lib/template/address-xml.php @@ -1,45 +1,87 @@ -\n"; - - echo "\n"; - - if (!sizeof($aPlace)) - { - if ($sError) - echo "$sError"; - else - echo "Unable to geocode"; - } - else - { - echo "".htmlspecialchars($aPlace['langaddress']).""; - - if ($bShowAddressDetails) { - echo ""; - foreach($aAddress as $sKey => $sValue) - { - $sKey = str_replace(' ','_',$sKey); - echo "<$sKey>"; - echo htmlspecialchars($sValue); - echo ""; - } - echo ""; - } - } - - echo ""; +\n"; + +echo '\n"; + +if (empty($aPlace)) { + if (isset($sError)) + echo "$sError"; + else echo 'Unable to geocode'; +} else { + echo ''.htmlspecialchars($aPlace['langaddress']).''; + + if (isset($aPlace['address'])) { + echo ''; + foreach ($aPlace['address']->getAddressNames() as $sKey => $sValue) { + $sKey = str_replace(' ', '_', $sKey); + echo "<$sKey>"; + echo htmlspecialchars($sValue); + echo ""; + } + echo ''; + } + + if (isset($aPlace['sExtraTags'])) { + echo ''; + foreach ($aPlace['sExtraTags'] as $sKey => $sValue) { + echo ''; + } + echo ''; + } + + if (isset($aPlace['sNameDetails'])) { + echo ''; + foreach ($aPlace['sNameDetails'] as $sKey => $sValue) { + echo ''; + echo htmlspecialchars($sValue); + echo ''; + } + echo ''; + } + + if (isset($aPlace['askml'])) { + echo "\n"; + echo $aPlace['askml']; + echo ''; + } +} + +echo '';