In the LocationIQ provider, bounds are passed to the AddressBuilder in the wrong order.
$builder->setBounds((float) $bounds['south'], (float) $bounds['north'], (float) $bounds['west'], (float) $bounds['east']);
should really be
$builder->setBounds((float) $bounds['south'], (float) $bounds['west'], (float) $bounds['north'], (float) $bounds['east']);
according to the function signature of AddressBuilder.
In the LocationIQ provider, bounds are passed to the AddressBuilder in the wrong order.
should really be
according to the function signature of AddressBuilder.