2012-03-04 19:41:43 +04:00
|
|
|
<?php
|
|
|
|
$aFilteredPlaces = array();
|
|
|
|
|
|
|
|
if (!sizeof($aPlace))
|
|
|
|
{
|
2012-12-09 12:35:34 +04:00
|
|
|
if (isset($sError))
|
2012-03-04 19:41:43 +04:00
|
|
|
$aFilteredPlaces['error'] = $sError;
|
|
|
|
else
|
|
|
|
$aFilteredPlaces['error'] = 'Unable to geocode';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($aPlace['place_id']) $aFilteredPlaces['place_id'] = $aPlace['place_id'];
|
2012-09-12 21:14:28 +04:00
|
|
|
$aFilteredPlaces['licence'] = "Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright";
|
2012-03-04 19:41:43 +04:00
|
|
|
$sOSMType = ($aPlace['osm_type'] == 'N'?'node':($aPlace['osm_type'] == 'W'?'way':($aPlace['osm_type'] == 'R'?'relation':'')));
|
|
|
|
if ($sOSMType)
|
|
|
|
{
|
|
|
|
$aFilteredPlaces['osm_type'] = $sOSMType;
|
|
|
|
$aFilteredPlaces['osm_id'] = $aPlace['osm_id'];
|
|
|
|
}
|
|
|
|
if (isset($aPlace['lat'])) $aFilteredPlaces['lat'] = $aPlace['lat'];
|
|
|
|
if (isset($aPlace['lon'])) $aFilteredPlaces['lon'] = $aPlace['lon'];
|
|
|
|
$aFilteredPlaces['category'] = $aPlace['class'];
|
|
|
|
$aFilteredPlaces['type'] = $aPlace['type'];
|
|
|
|
$aFilteredPlaces['addresstype'] = strtolower($aPlace['addresstype']);
|
|
|
|
|
|
|
|
$aFilteredPlaces['display_name'] = $aPlace['langaddress'];
|
|
|
|
$aFilteredPlaces['name'] = $aPlace['placename'];
|
2012-05-04 03:59:26 +04:00
|
|
|
if ($bShowAddressDetails && $aAddress && sizeof($aAddress)) $aFilteredPlaces['address'] = $aAddress;
|
2012-03-04 19:41:43 +04:00
|
|
|
}
|
|
|
|
|
2012-07-01 15:19:59 +04:00
|
|
|
javascript_renderData($aFilteredPlaces);
|