X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4429121341de7727be26d56b9a1d7ada84359ea6..94d795883f36485c3da866f8979cab07d28194c0:/lib/template/address-xml.php?ds=inline
diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php
index 0747844a..a3369d34 100644
--- a/lib/template/address-xml.php
+++ b/lib/template/address-xml.php
@@ -22,13 +22,50 @@
{
echo "".htmlspecialchars($aPlace['langaddress'])."";
- if ($bShowAddressDetails) {
+ if (isset($aPlace['aAddress']))
+ {
echo "";
foreach($aPlace['aAddress'] as $sKey => $sValue)
{
@@ -39,6 +76,36 @@
}
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 "";