mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 13:44:36 +03:00
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<?php
|
|
$aFilteredPlaces = array();
|
|
|
|
if (!sizeof($aPlace))
|
|
{
|
|
if (isset($sError))
|
|
$aFilteredPlaces['error'] = $sError;
|
|
else
|
|
$aFilteredPlaces['error'] = 'Unable to geocode';
|
|
}
|
|
else
|
|
{
|
|
if ($aPlace['place_id']) $aFilteredPlaces['place_id'] = $aPlace['place_id'];
|
|
$aFilteredPlaces['licence'] = "Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright";
|
|
$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['display_name'] = $aPlace['langaddress'];
|
|
if ($bShowAddressDetails) $aFilteredPlaces['address'] = $aAddress;
|
|
}
|
|
|
|
javascript_renderData($aFilteredPlaces);
|
|
|