3c6fadcf70
* add maps app, add proxy view for kortforsyningen services, add static_src/js/kfmap.js to create leaflet maps with tiles from kortforsyningen, adjust facility views to use the new map, add marker field to FacilityType model to specify marker colour, add js and marker pngs for coloured markers * remove debug print Co-authored-by: Thomas Steen Rasmussen <tykling@bornhack.org>
10 lines
178 B
Python
10 lines
178 B
Python
from django.urls import re_path
|
|
|
|
from .views import MapProxyView
|
|
|
|
app_name = "maps"
|
|
|
|
urlpatterns = [
|
|
re_path("kfproxy/(?P<path>.*)", MapProxyView.as_view(), name="proxy"),
|
|
]
|