X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/1f2ee8ed77695c2e475508f961db5b37f8d83bd6..aade8c75cb6036c85f4df36c810fbbcc07f43907:/lib/Geocode.php diff --git a/lib/Geocode.php b/lib/Geocode.php index c464aeed..b65cc277 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -426,11 +426,12 @@ if ($this->aRoutePoints) { $sViewboxCentreSQL = "ST_SetSRID('LINESTRING("; - $bFirst = false; - foreach($this->aRouteaPoints as $aPoint) + $bFirst = true; + foreach($this->aRoutePoints as $aPoint) { if (!$bFirst) $sViewboxCentreSQL .= ","; $sViewboxCentreSQL .= $aPoint[1].' '.$aPoint[0]; + $bFirst = false; } $sViewboxCentreSQL .= ")'::geometry,4326)"; @@ -1595,7 +1596,7 @@ $aResult['aPolyPoints'][] = array($aPoint[1], $aPoint[2]); } } - $aResult['aBoundingBox'] = array($aPointPolygon['minlat'],$aPointPolygon['maxlat'],$aPointPolygon['minlon'],$aPointPolygon['maxlon']); + $aResult['aBoundingBox'] = array((string)$aPointPolygon['minlat'],(string)$aPointPolygon['maxlat'],(string)$aPointPolygon['minlon'],(string)$aPointPolygon['maxlon']); } // Is there an icon set for this type of result?