X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/75ec3326e1f10e72b9ce8e2a11a9c4d5db2c881d..27406c8daa514a6b03480972f393d32b709cb315:/lib/template/address-xml.php diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index dc9f0548..39d9a147 100644 --- a/lib/template/address-xml.php +++ b/lib/template/address-xml.php @@ -1,41 +1,68 @@ -\n"; - - echo "\n"; - - if (!sizeof($aPlace)) - { - if ($sError) - echo "$sError"; - else - echo "Unable to geocode"; - } - else - { - echo "".htmlspecialchars($aPlace['langaddress']).""; - - echo ""; - foreach($aAddress as $sKey => $sValue) - { - $sKey = str_replace(' ','_',$sKey); - echo "<$sKey>"; - echo htmlspecialchars($sValue); - echo ""; - } - echo ""; - } - - echo ""; +\n"; + + echo "\n"; + + if (!sizeof($aPlace)) + { + if (isset($sError)) + echo "$sError"; + else + echo "Unable to geocode"; + } + else + { + echo "".htmlspecialchars($aPlace['langaddress']).""; + + if (isset($aPlace['aAddress'])) + { + echo ""; + foreach($aPlace['aAddress'] 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 ""; + } + } + + echo "";