diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-06-13 01:18:25 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-06-13 01:18:25 +0000 |
commit | c5a6d45415c7601f9a515d05a61ee795dc37536b (patch) | |
tree | c120b44a9cc0eea9ec69a1817053f97b22e66856 /templates/archives/map.html | |
parent | 6657ae24658383a9841450329a518327638651c0 (diff) |
updated maps.html to use google maps v3 and created custom route model using gmaps polyline tools to encode points
Diffstat (limited to 'templates/archives/map.html')
-rw-r--r-- | templates/archives/map.html | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/templates/archives/map.html b/templates/archives/map.html index 41e89f9..f7a008f 100644 --- a/templates/archives/map.html +++ b/templates/archives/map.html @@ -11,14 +11,13 @@ Google Maps code ==============================================#} {% block extrahead %} -<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAEZ0Oz7LFDmdS1OBHm6HLgRQT5Lr-mnFT_29u-YVgAYs_K_u6-BQ627CkPKq44oaHpmSt2497hDj_LQ" type="text/javascript"></script> - - +<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> +<script type="text/javascript" src="{{MEDIA_URL}}js/mainmap.js"></script> {% endblock %} {%block bodyid%}id="map" {%endblock%} -{% block bodyevents %}onload="initialize()" onunload="GUnload()"{% endblock %} +{% block bodyevents %}onload="initialize()"{% endblock %} @@ -36,8 +35,4 @@ Google Maps code <div id="map-canvas"> </div> </article> -{% endblock %} - -{% block js %} -{% include 'includes/map_entry_list.html' %} -{%endblock%}
\ No newline at end of file +{% endblock %}
\ No newline at end of file |