X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/12eb91b2bcc0fc543f588453418b49d3214a1be3..695a1712571bdb8829616cb7e8385d99825cc206:/lib/template/address-xml.php?ds=inline
diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php
index 0747844a..d3db2edd 100644
--- a/lib/template/address-xml.php
+++ b/lib/template/address-xml.php
@@ -1,44 +1,103 @@
\n";
-
- echo "\n";
-
- if (!sizeof($aPlace))
- {
- if (isset($sError))
- echo "$sError";
- else
- echo "Unable to geocode";
- }
- else
- {
- echo "".htmlspecialchars($aPlace['langaddress'])."";
-
- if ($bShowAddressDetails) {
- echo "";
- foreach($aPlace['aAddress'] as $sKey => $sValue)
- {
- $sKey = str_replace(' ','_',$sKey);
- echo "<$sKey>";
- echo htmlspecialchars($sValue);
- echo "$sKey>";
- }
- echo "";
- }
- }
-
- echo "";
+header("content-type: text/xml; charset=UTF-8");
+
+echo "<";
+echo "?xml version=\"1.0\" encoding=\"UTF-8\" ?";
+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 "$sKey>";
+ }
+ 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 "";