]> git.openstreetmap.org Git - nominatim.git/blob - lib/template/address-json.php
3c7327a32465dc0c568005b1b41d867e2d997c1d
[nominatim.git] / lib / template / address-json.php
1 <?php
2         header ("Content-Type: application/json; charset=UTF-8");
3         header("Access-Control-Allow-Origin: *");
4
5         $aFilteredPlaces = array();
6
7         if (!sizeof($aPlace))
8         {
9                 if ($sError)
10                         $aFilteredPlaces['error'] = $sError;
11                 else
12                         $aFilteredPlaces['error'] = 'Unable to geocode';
13         }
14         else
15         {
16                 if ($aPlace['place_id']) $aFilteredPlaces['place_id'] = $aPlace['place_id'];
17                 $aFilteredPlaces['licence'] = "Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.";
18                 $sOSMType = ($aPlace['osm_type'] == 'N'?'node':($aPlace['osm_type'] == 'W'?'way':($aPlace['osm_type'] == 'R'?'relation':'')));
19                 if ($sOSMType)
20                 {
21                         $aFilteredPlaces['osm_type'] = $sOSMType;
22                         $aFilteredPlaces['osm_id'] = $aPlace['osm_id'];
23                 }
24                 if (isset($aPlace['lat'])) $aFilteredPlaces['lat'] = $aPlace['lat'];
25                 if (isset($aPlace['lon'])) $aFilteredPlaces['lon'] = $aPlace['lon'];
26                 $aFilteredPlaces['display_name'] = $aPlace['langaddress'];
27                 if ($bShowAddressDetails) $aFilteredPlaces['address'] = $aAddress;
28         }
29
30         if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))
31         {
32                 echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';
33         }
34         else
35         {
36                 echo javascript_renderData($aFilteredPlaces);
37         }
38
39