Administration
The part for administrator is fairly simple. Just install the extension with
Enter on shell
composer require evoweb/store-finder
Copied!
In case the google maps geocode url changes and the extension has no update for, that the url can be changed in the same configuration part. Just enter the url in the field Url used for geocode.
Configuration

CORS settings
-
for backend rendering in locations records the content security policy header needs to be modified to allow loading images via https
img-src 'self' data: https:;
Copied! -
for frontend rendering of google AND OS map the csp header needs to be modified to allow script files via https
script-src 'self' 'unsafe-inline' blob: data: https:;
Copied! -
in addition the frontend rendering of OS map needs the csp header to allow loading style files via https
style-src 'self' 'unsafe-inline' https:;
Copied!