From c6cd043ebc45c1a91e8bbffef852a05049bb216c Mon Sep 17 00:00:00 2001 From: Patrick Date: Sun, 23 Aug 2026 22:02:05 +0200 Subject: [PATCH] Fix coordinate order for setBounds in LocationIQ.php --- src/Provider/LocationIQ/LocationIQ.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Provider/LocationIQ/LocationIQ.php b/src/Provider/LocationIQ/LocationIQ.php index 9320426de..c1d4b0969 100644 --- a/src/Provider/LocationIQ/LocationIQ.php +++ b/src/Provider/LocationIQ/LocationIQ.php @@ -154,7 +154,7 @@ private function xmlResultToArray(\DOMElement $resultNode, \DOMElement $addressN if ($boundsAttr) { $bounds = []; list($bounds['south'], $bounds['north'], $bounds['west'], $bounds['east']) = explode(',', $boundsAttr); - $builder->setBounds((float) $bounds['south'], (float) $bounds['north'], (float) $bounds['west'], (float) $bounds['east']); + $builder->setBounds((float) $bounds['south'], (float) $bounds['west'], (float) $bounds['north'], (float) $bounds['east']); } return $builder->build();