3 //= require jquery.timers
4 //= require jquery.throttle-debounce
5 //= require js-cookie/dist/js.cookie
7 //= require bootstrap-sprockets
9 //= require leaflet/dist/leaflet-src
10 //= require leaflet.osm
11 //= require leaflet.map
12 //= require leaflet.zoom
13 //= require leaflet.locationfilter
18 //= require qs/dist/qs
19 //= require bs-custom-file-input
20 //= require bs-custom-file-input-init
23 * Called as the user scrolls/zooms around to manipulate hrefs of the
24 * view tab and various other links
26 window.updateLinks = function (loc, zoom, layers, object) {
27 $(".geolink").each(function (index, link) {
28 var href = link.href.split(/[?#]/)[0],
29 args = Qs.parse(link.search.substring(1)),
30 editlink = $(link).hasClass("editlink");
35 delete args.changeset;
37 if (object && editlink) {
38 args[object.type] = object.id;
41 var query = Qs.stringify(args);
42 if (query) href += "?" + query;
46 lon: "lon" in loc ? loc.lon : loc.lng,
50 if (layers && !editlink) {
54 href += OSM.formatHash(args);
59 var editDisabled = zoom < 13;
61 .tooltip({ placement: "bottom" })
62 .attr("data-bs-original-title", editDisabled ?
63 I18n.t("javascripts.site.edit_disabled_tooltip") : "")
64 // Disable the button group and also the buttons to avoid
65 // inconsistent behaviour when zooming
66 .toggleClass("disabled", editDisabled)
68 .toggleClass("disabled", editDisabled);
71 window.maximiseMap = function () {
72 $("#content").addClass("maximised");
75 window.minimiseMap = function () {
76 $("#content").removeClass("maximised");
79 $(document).ready(function () {
83 function updateHeader() {
84 var windowWidth = $(window).width();
86 if (windowWidth < compactWidth) {
87 $("body").removeClass("compact-nav").addClass("small-nav");
88 } else if (windowWidth < headerWidth) {
89 $("body").addClass("compact-nav").removeClass("small-nav");
91 $("body").removeClass("compact-nav").removeClass("small-nav");
96 * Chrome 60 and later seem to fire the "ready" callback
97 * before the DOM is fully ready causing us to measure the
98 * wrong sizes for the header elements - use a 0ms timeout
99 * to defer the measurement slightly as a workaround.
101 setTimeout(function () {
102 $("header").children(":visible").each(function (i, e) {
103 headerWidth = headerWidth + $(e).outerWidth();
106 $("body").addClass("compact-nav");
108 $("header").children(":visible").each(function (i, e) {
109 compactWidth = compactWidth + $(e).outerWidth();
112 $("body").removeClass("compact-nav");
116 $(window).resize(updateHeader);
119 $("#menu-icon").on("click", function (e) {
121 $("header").toggleClass("closed");
124 $("nav.primary li a").on("click", function () {
125 $("header").toggleClass("closed");
128 var application_data = $("head").data();
130 I18n.default_locale = OSM.DEFAULT_LOCALE;
131 I18n.locale = application_data.locale;
132 I18n.fallbacks = true;
134 OSM.preferred_editor = application_data.preferredEditor;
136 if (application_data.user) {
137 OSM.user = application_data.user;
139 if (application_data.userHome) {
140 OSM.home = application_data.userHome;
144 if (application_data.location) {
145 OSM.location = application_data.location;