map tile rendering base
This commit is contained in:
parent
99f9aac0c3
commit
5cad398951
5 changed files with 59 additions and 0 deletions
7
src/c3nav/mapdata/urls.py
Normal file
7
src/c3nav/mapdata/urls.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import url
|
||||
|
||||
from c3nav.mapdata.views import tile
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^(?P<level>\d+)/(?P<zoom>\d+)/(?P<x>-?\d+)/(?P<y>-?\d+).(?P<format>png|svg)$', tile, name='mapdata.tile'),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue