source: src/django_gheat/wlheatmap/urls.py@ 9649

Last change on this file since 9649 was 9594, checked in by rick, 13 years ago

Nice hack for showing all nodes using geojson.

File size: 844 bytes
Line 
1from django.conf.urls.defaults import *
2from django.views.generic.simple import direct_to_template
3#from django.views.generic.base import TemplateView
4from django.conf import settings
5
6#class HomeView(TemplateView):
7# template_name = 'home.html'
8#
9#urlpatterns = patterns('',
10# ('^$', HomeView.as_view())
11#)
12
13urlpatterns = patterns('wlheatmap',
14 url(r'^$', direct_to_template, {'template' : 'home.html'}),
15 url(r'^js/LayerBase.js$', 'js_layer_base'),
16 url(r'^tile/fixed/wl-only/(?P<zoom>\d+)/(?P<x>\d+),(?P<y>\d+).png$', 'tile.fixed_wl_only'),
17 url(r'^tile/(?P<zoom>\d+)/(?P<x>\d+),(?P<y>\d+).png$', 'tile.serve_tile'),
18 url(r'^nodelist/(?P<zoom>\d+),(?P<lat>[0-9.]+),(?P<lon>[0-9.]+)$', 'nodelist.serve_nodelist'),
19 url(r'^feature/nodes.json$', 'feature.nodes_json'),
20 url(r'^filters/$', 'filters.serve_filters'),
21)
Note: See TracBrowser for help on using the repository browser.