]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-json.php
Merge branch 'interpolations'
[nominatim.git] / lib / template / search-json.php
index 3dcaabdbd6393a94bc27b375c1c401db11626a69..5d5ebfe81f9782706c4cb9ed24a74920c9baf15e 100644 (file)
@@ -8,27 +8,24 @@
                                'place_id'=>$aPointDetails['place_id'],
                                'licence'=>"Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright",
                        );
-
-               $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
+        
+               $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?
+                                       'relation':($aPointDetails['osm_type'] == 'T'?'tiger':($aPointDetails['osm_type'] == 'I'?'interpolation':'')))));
                if ($sOSMType)
                {
                        $aPlace['osm_type'] = $sOSMType;
                        $aPlace['osm_id'] = $aPointDetails['osm_id'];
                }
 
-                if (isset($aPointDetails['aBoundingBox']))
-                {
-                       $aPlace['boundingbox'] = array(
-                               $aPointDetails['aBoundingBox'][0],
-                               $aPointDetails['aBoundingBox'][1],
-                               $aPointDetails['aBoundingBox'][2],
-                               $aPointDetails['aBoundingBox'][3]);
+               if (isset($aPointDetails['aBoundingBox']))
+               {
+                       $aPlace['boundingbox'] = $aPointDetails['aBoundingBox'];
 
                        if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
                        {
                                $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
                        }
-                }
+               }
 
                if (isset($aPointDetails['zoom']))
                {
                if (isset($aPointDetails['address']))
                {
                        $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['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']))
                {