X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3433ec306e6e93bf1d7efbadb718ce00b5ffe17e..5a772a5770b4c0ced10e7da95dee17e5052ff8de:/lib/Geocode.php?ds=inline diff --git a/lib/Geocode.php b/lib/Geocode.php index b9e26f03..f0e03de5 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -149,6 +149,10 @@ class Geocode private function viewboxImportanceFactor($fX, $fY) { + if (!$this->aViewBox) { + return 1; + } + $fWidth = ($this->aViewBox[2] - $this->aViewBox[0])/2; $fHeight = ($this->aViewBox[3] - $this->aViewBox[1])/2;