{
CtplEnviron *env;
+ gchar *head;
gchar *filename;
gchar *content;
content = get_ctpl_filled (filename, NULL);
g_free (filename);
+ head = g_strdup ("<link rel=\"stylesheet\" href=\"http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css\" />\n"
+"<script src=\"http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js\"></script>\n"
+"\n"
+"<script type=\"text/javascript\">\n"
+"var map;\n"
+"var ajaxRequest;\n"
+"var plotlist;\n"
+"var plotlayers=[];\n"
+"var marker;\n"
+"\n"
+"function showPosition(position) {\n"
+" map.setView(new L.LatLng(position.coords.latitude, position.coords.longitude),13);\n"
+"}\n"
+"\n"
+"function onMapClick(e) {\n"
+"if (!marker)\n"
+"{\n"
+"marker = L.marker([e.latlng.lat, e.latlng.lng]).addTo(map);\n"
+"}\n"
+"else\n"
+"{\n"
+"marker.setLatLng([e.latlng.lat, e.latlng.lng]);\n"
+"}\n"
+"$('#lat').val(e.latlng.lat);\n"
+"$('#lng').val(e.latlng.lng);\n"
+"}\n"
+"\n"
+"function initmap() {\n"
+" // geolocation\n"
+" navigator.geolocation.getCurrentPosition(showPosition);\n"
+"\n"
+" // set up the map\n"
+" map = new L.Map('map');\n"
+"\n"
+" // create the tile layer with correct attribution\n"
+" var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';\n"
+" var osmAttrib='Map data © <a href=\"http://openstreetmap.org\">OpenStreetMap</a> contributors';\n"
+" var osm = new L.TileLayer(osmUrl, {minZoom: 8, maxZoom: 16, attribution: osmAttrib});\n"
+"\n"
+" // start the map in South-East England\n"
+" map.setView(new L.LatLng(51.3, 0.7),9);\n"
+" map.addLayer(osm);\n"
+""
+" map.on('click', onMapClick);\n"
+"}\n"
+" </script>");
+
env = ctpl_environ_new ();
- ctpl_environ_push_string (env, "head", "");
+ ctpl_environ_push_string (env, "head", head);
+ ctpl_environ_push_string (env, "body_tag", " onload=\"initmap()\"");
ctpl_environ_push_string (env, "body", content);
filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL);
get_ctpl_filled (filename, env));
g_free (filename);
+ g_free (head);
g_free (content);
}
env = ctpl_environ_new ();
ctpl_environ_push_string (env, "head", "");
+ ctpl_environ_push_string (env, "body_tag", "");
ctpl_environ_push_string (env, "body", content);
filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL);