3 //= require jquery.timers
4 //= require jquery.cookie
5 //= require jquery.throttle-debounce
6 //= require bootstrap.tooltip
7 //= require bootstrap.dropdown
11 //= require leaflet.osm
12 //= require leaflet.hash
13 //= require leaflet.zoom
14 //= require leaflet.extend
15 //= require leaflet.locationfilter
16 //= require i18n/translations
23 //= require querystring
25 var querystring = require('querystring-component');
27 function zoomPrecision(zoom) {
28 return Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2));
31 function remoteEditHandler(bbox, select) {
34 left: bbox.getWest() - 0.0001,
35 top: bbox.getNorth() + 0.0001,
36 right: bbox.getEast() + 0.0001,
37 bottom: bbox.getSouth() - 0.0001
40 if (select) query.select = select;
42 var iframe = $('<iframe>')
45 .attr("src", "http://127.0.0.1:8111/load_and_zoom?" + querystring.stringify(query))
46 .on('load', function() {
51 setTimeout(function () {
53 alert(I18n.t('site.index.remote_failed'));
62 * Called as the user scrolls/zooms around to maniplate hrefs of the
63 * view tab and various other links
65 function updatelinks(loc, zoom, layers, object) {
66 $(".geolink").each(function(index, link) {
67 var href = link.href.split(/[?#]/)[0],
68 args = querystring.parse(link.search.substring(1));
70 if (object && $(link).hasClass("object")) args[object.type] = object.id;
72 var query = querystring.stringify(args);
73 if (query) href += '?' + query;
77 lon: loc.lon || loc.lng,
81 if (layers && $(link).hasClass("layers")) {
85 href += OSM.formatHash(args);
90 var editDisabled = zoom < 13;
92 .tooltip({placement: 'bottom'})
94 .on('click.minzoom', function() { return !editDisabled; })
95 .toggleClass('disabled', editDisabled)
96 .attr('data-original-title', editDisabled ?
97 I18n.t('javascripts.site.edit_disabled_tooltip') : '');
100 // generate a cookie-safe string of map state
101 function cookieContent(map) {
102 var center = map.getCenter().wrap();
103 return [center.lng, center.lat, map.getZoom(), map.getLayersCode()].join('|');
106 function escapeHTML(string) {
114 return string == null ? '' : (string + '').replace(/[&<>"']/g, function(match) {
115 return htmlEscapes[match];
120 * Forms which have been cached by rails may have the wrong
121 * authenticity token, so patch up any forms with the correct
122 * token taken from the page header.
124 $(document).ready(function () {
125 var auth_token = $("meta[name=csrf-token]").attr("content");
126 $("form input[name=authenticity_token]").val(auth_token);