]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/Geocode.php
fix nominatim paths
[nominatim.git] / lib / Geocode.php
index 1dbde919d4fda8975763af3e79d300206c6737a0..19ed354fa6c5793d53f838c08a4b32769065071e 100644 (file)
                                $oPlaceLookup->setPolygonSimplificationThreshold($this->fPolygonSimplificationThreshold);
 
                                $aOutlineResult = $oPlaceLookup->getOutlines($aResult['place_id'], $aResult['lon'], $aResult['lat'], $fDiameter/2);
-                               $aResult = array_merge($aResult, $aOutlineResult);
-
+                               if ($aOutlineResult)
+                               {
+                                       $aResult = array_merge($aResult, $aOutlineResult);
+                               }
+                               
                                if ($aResult['extra_place'] == 'city')
                                {
                                        $aResult['class'] = 'place';