summaryrefslogtreecommitdiff
path: root/app/locations/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/locations/views.py')
-rw-r--r--app/locations/views.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/locations/views.py b/app/locations/views.py
index e083e4f..bd5eb93 100644
--- a/app/locations/views.py
+++ b/app/locations/views.py
@@ -2,6 +2,7 @@ from django.shortcuts import render_to_response
from django.template import RequestContext
from blog.models import Entry
from locations.models import Country, Region, Route
+from projects.shortcuts import render_to_geojson
def map_list(request):
@@ -30,3 +31,14 @@ def map_data(request):
context,
context_instance=RequestContext(request)
)
+
+
+def data_json(request, id):
+ qs = Route.objects.filter(pk=id)
+ return render_to_geojson(
+ qs,
+ included_fields=['id', ],
+ geom_attribute='geometry',
+ mimetype='application/json',
+ pretty_print=True
+ )