ojuso-map/apps/map/urls.py
2017-05-23 01:12:04 +02:00

13 lines
317 B
Python

from django.conf.urls import url
from djgeojson.views import GeoJSONLayerView
from .models import CaseStudy
from . import views
urlpatterns = [
url(r'^$', views.index, name='index'),
url(r'^data.geojson$',
GeoJSONLayerView.as_view(model=CaseStudy, geometry_field='location'),
name='data')
]