mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 14:32:29 +03:00
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
header ("Content-Type: application/json; charset=UTF-8");
|
|
header("Access-Control-Allow-Origin: *");
|
|
|
|
$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['display_name'] = $aPlace['langaddress'];
|
|
$aFilteredPlaces['address'] = $aAddress;
|
|
}
|
|
|
|
if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))
|
|
{
|
|
echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';
|
|
}
|
|
else
|
|
{
|
|
echo javascript_renderData($aFilteredPlaces);
|
|
}
|
|
|
|
|