X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b11461907f02b4f583e22ccdf90550f00f1f39b7..3d1caa5a6ce8b5f4886f2941d25df6fc796de662:/lib/Geocode.php diff --git a/lib/Geocode.php b/lib/Geocode.php index c1fae0bb..38f76142 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -148,15 +148,9 @@ $this->bBoundedSearch = (bool)$bBoundedSearch; } - function setViewBox($sLeft, $sBottom, $sRight, $sTop) + function setViewBox($fLeft, $fBottom, $fRight, $fTop) { - $fLeft = (float)$sLeft; - $fRight = (float)$sRight; - $fTop = (float)$sTop; - $fBottom = (float)$sBottom; - if ($fRight > $fLeft && $fBottom < $fTop - && ($fRight - $fLeft) < 2 && ($fTop - $fBottom) < 2) - $this->aViewBox = array($fLeft, $fBottom, $fRight, $fTop); + $this->aViewBox = array($fLeft, $fBottom, $fRight, $fTop); } function getViewBoxString()