]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-batch-json.php
spaces-to-tabs for all *.php files
[nominatim.git] / lib / template / search-batch-json.php
index ef2c143abf16ae9b440127f1f6397758062fad52..edfe3871403684842fa822afcb2f4722a09db5b7 100644 (file)
@@ -11,8 +11,8 @@
                foreach($aSearchResults as $iResNum => $aPointDetails)
                {
                        $aPlace = array(
                foreach($aSearchResults as $iResNum => $aPointDetails)
                {
                        $aPlace = array(
-                                       'place_id'=>$aPointDetails['place_id'],
-                                 );
+                                               'place_id'=>$aPointDetails['place_id'],
+                                       );
 
                        $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
                        if ($sOSMType)
 
                        $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
                        if ($sOSMType)
@@ -21,8 +21,8 @@
                                $aPlace['osm_id'] = $aPointDetails['osm_id'];
                        }
 
                                $aPlace['osm_id'] = $aPointDetails['osm_id'];
                        }
 
-                       if (isset($aPointDetails['aBoundingBox']))
-                       {
+                       if (isset($aPointDetails['aBoundingBox']))
+                       {
                                $aPlace['boundingbox'] = array(
                                        $aPointDetails['aBoundingBox'][0],
                                        $aPointDetails['aBoundingBox'][1],
                                $aPlace['boundingbox'] = array(
                                        $aPointDetails['aBoundingBox'][0],
                                        $aPointDetails['aBoundingBox'][1],
@@ -33,7 +33,7 @@
                                {
                                        $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
                                }
                                {
                                        $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
                                }
-                       }
+                       }
 
                        if (isset($aPointDetails['zoom']))
                        {
 
                        if (isset($aPointDetails['zoom']))
                        {
                        if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
                        {
                                $aPlace['address'] = $aPointDetails['address'];
                        if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
                        {
                                $aPlace['address'] = $aPointDetails['address'];
-                       }
+                       }
 
 
-                       if (isset($aPointDetails['asgeojson']))
-                       {
+                       if (isset($aPointDetails['asgeojson']))
+                       {
                                $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
                                $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
-                       }
+                       }
 
 
-                       if (isset($aPointDetails['assvg']))
-                       {
+                       if (isset($aPointDetails['assvg']))
+                       {
                                $aPlace['svg'] = $aPointDetails['assvg'];
                                $aPlace['svg'] = $aPointDetails['assvg'];
-                       }
+                       }
 
 
-                       if (isset($aPointDetails['astext']))
-                       {
-                               $aPlace['geotext'] = $aPointDetails['astext'];
-                       }
+                       if (isset($aPointDetails['astext']))
+                       {
+                               $aPlace['geotext'] = $aPointDetails['astext'];
+                       }
 
 
-                       if (isset($aPointDetails['askml']))
-                       {
-                               $aPlace['geokml'] = $aPointDetails['askml'];
-                       }
+                       if (isset($aPointDetails['askml']))
+                       {
+                               $aPlace['geokml'] = $aPointDetails['askml'];
+                       }
 
                        $aFilteredPlaces[] = $aPlace;
                }
 
                        $aFilteredPlaces[] = $aPlace;
                }