forked from hans/Nominatim
- handles json/jsonp transparently (avoiding code duplication in templates) - use php's internal json_encode functions (with JSON_UNESCAPED_UNICODE for backward compatibility) - be more liberal with what is allowed as a callback identifier - return a 400 for illegal callbacks - return application/javascript type when jsonp is requested fixes #16, fixes #17
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
|
$aFilteredPlaces = array();
|
|
|
|
if (!sizeof($aPlace))
|
|
{
|
|
if ($sError)
|
|
$aFilteredPlaces['error'] = $sError;
|
|
else
|
|
$aFilteredPlaces['error'] = 'Unable to geocode';
|
|
}
|
|
else
|
|
{
|
|
if ($aPlace['place_id']) $aFilteredPlaces['place_id'] = $aPlace['place_id'];
|
|
$aFilteredPlaces['licence'] = "Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.";
|
|
$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'];
|
|
if ($bShowAddressDetails && $aAddress && sizeof($aAddress)) $aFilteredPlaces['address'] = $aAddress;
|
|
}
|
|
|
|
javascript_renderData($aFilteredPlaces);
|