diff options
| -rw-r--r-- | chimere/widgets.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chimere/widgets.py b/chimere/widgets.py index f55552f..9bf6161 100644 --- a/chimere/widgets.py +++ b/chimere/widgets.py @@ -39,13 +39,16 @@ import re BASE_CSS = { "all": ("{}ol3/ol.css".format(settings.STATIC_URL), + "{}ol3-layerswitcher/ol3-layerswitcher.css".format( + settings.STATIC_URL), "{}chimere/css/forms.css".format(settings.STATIC_URL)) } BASE_JS = tuple( ["{}ol3/ol.js".format(settings.STATIC_URL)] + list(settings.JQUERY_JS_URLS) + - ["{}chimere/js/jquery.chimere.js".format(settings.STATIC_URL)]) + ["{}chimere/js/jquery.chimere.js".format(settings.STATIC_URL), + "{}ol3-layerswitcher/ol3-layerswitcher.js".format(settings.STATIC_URL)]) AREA_JS = tuple( ["{}ol3/ol.js".format(settings.STATIC_URL)] + |
