added stamen stadia as a spatial map provider

This commit is contained in:
Elia Bellavista 2024-05-26 17:31:22 +02:00
parent a0fc203328
commit d419d9d063
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
if [[ $CKAN__PLUGINS == *"spatial_metadata"* ]]; then
echo "Configuring CKAN spatial ..."
ckan config-tool $CKAN_INI "ckanext.spatial.common_map.type=Stadia.StamenTerrain"
ckan config-tool $CKAN_INI "ckanext.spatial.common_map.max_zoom=18"
# forse è da aggiungere un qualche tipo di key per production
else
echo "Not configuring spatial, plugin not enabled."
fi