From: Sarah Hoffmann Date: Sat, 30 Sep 2017 12:16:07 +0000 (+0200) Subject: order of viewbox coordinates does not matter X-Git-Tag: v3.1.0~69 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/749091bf3a0ac9c1f7417b7b896aa4081fc8d5c8 order of viewbox coordinates does not matter --- diff --git a/lib/Geocode.php b/lib/Geocode.php index a7987d24..fc2d6c65 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -313,12 +313,7 @@ class Geocode if (count($aViewbox) != 4) { userError("Bad parmater 'viewbox'. Expected 4 coordinates."); } - $this->setViewBox(array( - $aViewbox[0], - $aViewbox[3], - $aViewbox[2], - $aViewbox[1] - )); + $this->setViewBox($aViewbox); } else { $aRoute = $oParams->getStringList('route'); $fRouteWidth = $oParams->getFloat('routewidth');