From 294820d74fbfa6f54d689084d4fd689a2ad8a1e9 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Thu, 20 Jan 2011 18:56:55 -0500 Subject: moved template build files to bin folder and updated file paths throughout apps --- templates/includes/map_entry_list_template.html | 111 ------------------------ 1 file changed, 111 deletions(-) delete mode 100644 templates/includes/map_entry_list_template.html (limited to 'templates/includes/map_entry_list_template.html') diff --git a/templates/includes/map_entry_list_template.html b/templates/includes/map_entry_list_template.html deleted file mode 100644 index 11dc1da..0000000 --- a/templates/includes/map_entry_list_template.html +++ /dev/null @@ -1,111 +0,0 @@ -{% load typogrify %} -{% load truncateletters %} -{% load slugify_under %} - - // center on a country - function focusCountry(latitude, longitude, zoom) { - map.setZoom(zoom); - map.panTo(new google.maps.LatLng(latitude, longitude)); - }; - - {% for route in route_list %} - var {{route.template_var_name}} = [ - {% for point in route.geometry.coords%} - new google.maps.LatLng({{point.1}}, {{point.0}}){% if forloop.last%}{%else%},{%endif%} - {% endfor %} - ]; - {% endfor %} - function showRoute(route, zoom, latitude, longitude) { - var routePath = new google.maps.Polyline({ - path: eval(route), - strokeColor: "#FF0000", - strokeOpacity: 1.0, - strokeWeight: 2 - }); - map.setZoom(zoom); - map.panTo(new google.maps.LatLng(latitude, longitude)); - routePath.setMap(map); - return false; - }; -var map; -function initialize() { - - //custom marker - var image = new google.maps.MarkerImage('http://media.luxagraf.net/img/marker-entry.png', - new google.maps.Size(15, 26), - new google.maps.Point(0, 0), - new google.maps.Point(7, 26) - ); - //custom marker shadow - var shadow = new google.maps.MarkerImage('http://media.luxagraf.net/img/shadow.png', - new google.maps.Size(37, 34), - new google.maps.Point(0,0), - new google.maps.Point(8, 34) - ); - - - //check for a permalink - var location = window.location.hash; - //find a centerpoint - var pts = new Array(); - {%for c in country_list%}pts[{{forloop.counter0}}] = ["#{{c.slug}}", {{c.lat}},{{c.lon}},{{c.zoom_level}}];{% endfor %} - {%for c in region_list%}pts[pts.length] = ["#{{c.slug}}", {{c.lat}},{{c.lon}},{{c.zoom_level}}];{% endfor %} - if (location.length>1) { - for (i=0;i