]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/application.js
256ab8e481295c4c36f49699271830a17767aa02
[rails.git] / app / assets / javascripts / application.js
1 //= require jquery
2 //= require jquery_ujs
3 //= require jquery.timers
4 //= require jquery.cookie
5 //= require augment
6 //= require leaflet
7 //= require leaflet.osm
8 //= require leaflet.hash
9 //= require leaflet.zoom
10 //= require leaflet.extend
11 //= require leaflet.locationfilter
12 //= require i18n/translations
13 //= require oauth
14 //= require osm
15 //= require piwik
16 //= require map
17 //= require menu
18 //= require sidebar
19 //= require richtext
20 //= require geocoder
21 //= require querystring
22
23 var querystring = require('querystring-component');
24
25 function zoomPrecision(zoom) {
26     return Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2));
27 }
28
29 function normalBounds(bounds) {
30     if (bounds instanceof L.LatLngBounds) return bounds;
31     return new L.LatLngBounds(
32         new L.LatLng(bounds[0][0], bounds[0][1]),
33         new L.LatLng(bounds[1][0], bounds[1][1]));
34 }
35
36 function remoteEditHandler(bbox, select) {
37   var loaded = false,
38       query = {
39           left: bbox.getWest() - 0.0001,
40           top: bbox.getNorth() + 0.0001,
41           right: bbox.getEast() + 0.0001,
42           bottom: bbox.getSouth() - 0.0001
43       };
44
45   if (select) query.select = select;
46   $("#linkloader")
47     .attr("src", "http://127.0.0.1:8111/load_and_zoom?" + querystring.stringify(query))
48     .load(function() { loaded = true; });
49
50   setTimeout(function () {
51     if (!loaded) alert(I18n.t('site.index.remote_failed'));
52   }, 1000);
53
54   return false;
55 }
56
57 /*
58  * Called as the user scrolls/zooms around to maniplate hrefs of the
59  * view tab and various other links
60  */
61 function updatelinks(loc, zoom, layers, bounds, object) {
62   $(".geolink").each(function(index, link) {
63     var base = link.href.split('?')[0],
64         args = querystring.parse(link.search.substring(1));
65
66     if (bounds && $(link).hasClass("bbox")) args.bbox = normalBounds(bounds).toBBoxString();
67     if (layers && $(link).hasClass("layers")) args.layers = layers;
68     if (object && $(link).hasClass("object")) args[object.type] = object.id;
69
70     var href = base + '?' + querystring.stringify(args);
71
72     if ($(link).hasClass("llz")) {
73       href += OSM.formatHash({lat: loc.lat, lon: loc.lon || loc.lng, zoom: zoom});
74     }
75
76     link.href = href;
77
78     var minzoom = $(link).data("minzoom");
79     if (minzoom) {
80       var name = link.id.replace(/anchor$/, "");
81       $(link).off("click.minzoom");
82       if (zoom >= minzoom) {
83         $(link)
84           .attr("title", I18n.t("javascripts.site." + name + "_tooltip"))
85           .removeClass("disabled");
86       } else {
87         $(link)
88           .attr("title", I18n.t("javascripts.site." + name + "_disabled_tooltip"))
89           .addClass("disabled")
90           .on("click.minzoom", function () {
91             alert(I18n.t("javascripts.site." + name + "_zoom_alert"));
92             return false;
93           });
94       }
95     }
96   });
97 }
98
99 // generate a cookie-safe string of map state
100 function cookieContent(map) {
101   var center = map.getCenter().wrap();
102   return [center.lng, center.lat, map.getZoom(), map.getLayersCode()].join('|');
103 }
104
105 /*
106  * Forms which have been cached by rails may have the wrong
107  * authenticity token, so patch up any forms with the correct
108  * token taken from the page header.
109  */
110 $(document).ready(function () {
111   var auth_token = $("meta[name=csrf-token]").attr("content");
112   $("form input[name=authenticity_token]").val(auth_token);
113 });