mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 06:22:08 +03:00
71 lines
2.0 KiB
PHP
71 lines
2.0 KiB
PHP
<?php
|
|
header("content-type: text/xml; charset=UTF-8");
|
|
|
|
echo "<";
|
|
echo "?xml version=\"1.0\" encoding=\"UTF-8\" ?";
|
|
echo ">\n";
|
|
|
|
echo "<reversegeocode";
|
|
echo " timestamp='".date(DATE_RFC822)."'";
|
|
echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright'";
|
|
echo " querystring='".htmlspecialchars($_SERVER['QUERY_STRING'], ENT_QUOTES)."'";
|
|
echo ">\n";
|
|
|
|
if (!sizeof($aPlace))
|
|
{
|
|
if (isset($sError))
|
|
echo "<error>$sError</error>";
|
|
else
|
|
echo "<error>Unable to geocode</error>";
|
|
}
|
|
else
|
|
{
|
|
echo "<result";
|
|
if ($aPlace['place_id']) echo ' place_id="'.$aPlace['place_id'].'"';
|
|
$sOSMType = ($aPlace['osm_type'] == 'N'?'node':($aPlace['osm_type'] == 'W'?'way':($aPlace['osm_type'] == 'R'?'relation':'')));
|
|
if ($sOSMType) echo ' osm_type="'.$sOSMType.'"'.' osm_id="'.$aPlace['osm_id'].'"';
|
|
if ($aPlace['ref']) echo ' ref="'.htmlspecialchars($aPlace['ref']).'"';
|
|
if (isset($aPlace['lat'])) echo ' lat="'.htmlspecialchars($aPlace['lat']).'"';
|
|
if (isset($aPlace['lon'])) echo ' lon="'.htmlspecialchars($aPlace['lon']).'"';
|
|
echo ">".htmlspecialchars($aPlace['langaddress'])."</result>";
|
|
|
|
if (isset($aPlace['aAddress']))
|
|
{
|
|
echo "<addressparts>";
|
|
foreach($aPlace['aAddress'] as $sKey => $sValue)
|
|
{
|
|
$sKey = str_replace(' ','_',$sKey);
|
|
echo "<$sKey>";
|
|
echo htmlspecialchars($sValue);
|
|
echo "</$sKey>";
|
|
}
|
|
echo "</addressparts>";
|
|
}
|
|
|
|
if (isset($aPlace['sExtraTags']))
|
|
{
|
|
echo "<extratags>";
|
|
foreach ($aPlace['sExtraTags'] as $sKey => $sValue)
|
|
{
|
|
echo '<tag key="'.htmlspecialchars($sKey).'">';
|
|
echo htmlspecialchars($sValue);
|
|
echo "</tag>";
|
|
}
|
|
echo "</extratags>";
|
|
}
|
|
|
|
if (isset($aPlace['sNameDetails']))
|
|
{
|
|
echo "<namedetails>";
|
|
foreach ($aPlace['sNameDetails'] as $sKey => $sValue)
|
|
{
|
|
echo '<name key="'.htmlspecialchars($sKey).'">';
|
|
echo htmlspecialchars($sValue);
|
|
echo "</name>";
|
|
}
|
|
echo "</namedetails>";
|
|
}
|
|
}
|
|
|
|
echo "</reversegeocode>";
|