Geocoding provider
Changing geocoding provider
By using the geocoder-
package it's possible to change the geocoding provider.
As default the geocoder-
package is required. But it's possible to
require different packages in the project composer.json. A list of available provider can be
found here geocoder-php/Geocoder
This can be achieved by
Enter on shell
composer require geocoder-php/nominatim-provider
Copied!
Extension configuration
If you choose to use a different providers it's important to set the provider classname in the field geocoderProvider:
Settings > Extension configuration
geocoderProvider = Geocoder\Provider\Nominatim\Nominatim
Copied!
TypoScript constants
If you want to use the additional provider for geocoding search results too, you need to change the constant
EXT:my_extension/Configuration/TypoScript/constants.typoscript
plugin.tx_storefinder.geocoderProvider = Geocoder\Provider\Nominatim\Nominatim
Copied!