2012-03-04 19:41:43 +04:00
|
|
|
<?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)."'";
|
2012-09-12 21:14:28 +04:00
|
|
|
echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright'";
|
2012-03-04 19:41:43 +04:00
|
|
|
echo " querystring='".htmlspecialchars($_SERVER['QUERY_STRING'], ENT_QUOTES)."'";
|
|
|
|
echo ">\n";
|
|
|
|
|
|
|
|
if (!sizeof($aPlace))
|
|
|
|
{
|
2012-12-09 12:35:34 +04:00
|
|
|
if (isset($sError))
|
2012-03-04 19:41:43 +04:00
|
|
|
echo "<error>$sError</error>";
|
|
|
|
else
|
|
|
|
echo "<error>Unable to geocode</error>";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "<result";
|
|
|
|
if ($aPlace['place_id']) echo ' place_id="'.$aPlace['place_id'].'"';
|
2014-02-05 23:10:12 +04:00
|
|
|
$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'].'"';
|
2012-03-04 19:41:43 +04:00
|
|
|
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>";
|
|
|
|
|
2015-08-09 16:14:59 +03:00
|
|
|
if (isset($aPlace['aAddress']))
|
|
|
|
{
|
2012-03-04 19:41:43 +04:00
|
|
|
echo "<addressparts>";
|
2013-08-27 20:21:20 +04:00
|
|
|
foreach($aPlace['aAddress'] as $sKey => $sValue)
|
2012-03-04 19:41:43 +04:00
|
|
|
{
|
|
|
|
$sKey = str_replace(' ','_',$sKey);
|
|
|
|
echo "<$sKey>";
|
|
|
|
echo htmlspecialchars($sValue);
|
|
|
|
echo "</$sKey>";
|
|
|
|
}
|
|
|
|
echo "</addressparts>";
|
2012-12-17 04:24:58 +04:00
|
|
|
}
|
2015-08-09 16:14:59 +03:00
|
|
|
|
|
|
|
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>";
|
|
|
|
}
|
2012-03-04 19:41:43 +04:00
|
|
|
}
|
2012-12-17 04:24:58 +04:00
|
|
|
|
2012-03-04 19:41:43 +04:00
|
|
|
echo "</reversegeocode>";
|