]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-jsonv2.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib / template / search-jsonv2.php
index 7dd4b334c396ca91e322d2c4c1c6506d3132848c..35538797184808477ae7b96d9f33e7a69bac66bd 100644 (file)
@@ -1,65 +1,79 @@
-<?php\r
-       header("Content-Type: application/json; charset=UTF-8");\r
-       header("Access-Control-Allow-Origin: *");\r
-\r
-       $aFilteredPlaces = array();\r
-       foreach($aSearchResults as $iResNum => $aPointDetails)\r
-       {\r
-               $aPlace = array(\r
-                               'place_id'=>$aPointDetails['place_id'],\r
-                               'licence'=>"Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.",\r
-                       );\r
-\r
-               $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));\r
-               if ($sOSMType)\r
-               {\r
-                       $aPlace['osm_type'] = $sOSMType;\r
-                       $aPlace['osm_id'] = $aPointDetails['osm_id'];\r
-               }\r
-\r
-                if (isset($aPointDetails['aBoundingBox']))\r
-                {\r
-                       $aPlace['boundingbox'] = array(\r
-                               $aPointDetails['aBoundingBox'][0],\r
-                               $aPointDetails['aBoundingBox'][1],\r
-                               $aPointDetails['aBoundingBox'][2],\r
-                               $aPointDetails['aBoundingBox'][3]);\r
-\r
-                       if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)\r
-                       {\r
-                               $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];\r
-                       }\r
-                }\r
-\r
-               if (isset($aPointDetails['zoom']))\r
-               {\r
-                       $aPlace['zoom'] = $aPointDetails['zoom'];\r
-               }\r
-\r
-               $aPlace['lat'] = $aPointDetails['lat'];\r
-               $aPlace['lon'] = $aPointDetails['lon'];\r
-               $aPlace['display_name'] = $aPointDetails['name'];\r
-\r
-               $aPlace['category'] = $aPointDetails['class'];\r
-               $aPlace['type'] = $aPointDetails['type'];\r
-               if ($aPointDetails['icon'])\r
-               {\r
-                       $aPlace['icon'] = $aPointDetails['icon'];\r
-               }\r
-\r
-               if (isset($aPointDetails['address']))\r
-               {\r
-                       $aPlace['address'] = $aPointDetails['address'];\r
-                }\r
-\r
-               $aFilteredPlaces[] = $aPlace;\r
-       }\r
-\r
-       if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))\r
-       {\r
-               echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';\r
-       }\r
-       else\r
-       {\r
-               echo javascript_renderData($aFilteredPlaces);\r
-       }\r
+<?php
+
+$aFilteredPlaces = array();
+foreach($aSearchResults as $iResNum => $aPointDetails)
+{
+    $aPlace = array(
+            'place_id'=>$aPointDetails['place_id'],
+            'licence'=>"Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright",
+        );
+
+    $sOSMType = formatOSMType($aPointDetails['osm_type']);
+    if ($sOSMType)
+    {
+        $aPlace['osm_type'] = $sOSMType;
+        $aPlace['osm_id'] = $aPointDetails['osm_id'];
+    }
+
+    if (isset($aPointDetails['aBoundingBox']))
+    {
+        $aPlace['boundingbox'] = $aPointDetails['aBoundingBox'];
+
+        if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
+        {
+            $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
+        }
+    }
+
+    if (isset($aPointDetails['zoom']))
+    {
+        $aPlace['zoom'] = $aPointDetails['zoom'];
+    }
+
+    $aPlace['lat'] = $aPointDetails['lat'];
+    $aPlace['lon'] = $aPointDetails['lon'];
+    $aPlace['display_name'] = $aPointDetails['name'];
+    $aPlace['place_rank'] = $aPointDetails['rank_search'];
+
+    $aPlace['category'] = $aPointDetails['class'];
+    $aPlace['type'] = $aPointDetails['type'];
+
+    $aPlace['importance'] = $aPointDetails['importance'];
+
+    if (isset($aPointDetails['icon']))
+    {
+        $aPlace['icon'] = $aPointDetails['icon'];
+    }
+
+    if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
+    {
+        $aPlace['address'] = $aPointDetails['address'];
+    }
+
+    if (isset($aPointDetails['asgeojson']))
+    {
+        $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
+    }
+
+    if (isset($aPointDetails['assvg']))
+    {
+        $aPlace['svg'] = $aPointDetails['assvg'];
+    }
+
+    if (isset($aPointDetails['astext']))
+    {
+        $aPlace['geotext'] = $aPointDetails['astext'];
+    }
+
+    if (isset($aPointDetails['askml']))
+    {
+        $aPlace['geokml'] = $aPointDetails['askml'];
+    }
+
+    if (isset($aPointDetails['sExtraTags'])) $aPlace['extratags'] = $aPointDetails['sExtraTags'];
+    if (isset($aPointDetails['sNameDetails'])) $aPlace['namedetails'] = $aPointDetails['sNameDetails'];
+
+    $aFilteredPlaces[] = $aPlace;
+}
+
+javascript_renderData($aFilteredPlaces);