X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/974e404a6e21e953354c38fc71338deb259f13ed..5047ec403db94b0d371a9a10b56801bc0a3fcf0a:/app/assets/javascripts/leaflet.map.js diff --git a/app/assets/javascripts/leaflet.map.js b/app/assets/javascripts/leaflet.map.js index 1324532d3..1b92edf99 100644 --- a/app/assets/javascripts/leaflet.map.js +++ b/app/assets/javascripts/leaflet.map.js @@ -265,9 +265,7 @@ L.OSM.Map = L.Map.extend({ this.removeObject(); if (object.type === "note" || object.type === "changeset") { - this._objectLoader = { - abort: function () {} - }; + this._objectLoader = { abort: () => {} }; this._object = object; this._objectLayer = L.featureGroup().addTo(this); @@ -295,10 +293,13 @@ L.OSM.Map = L.Map.extend({ this.fire("overlayadd", { layer: this._objectLayer }); } else { // element handled by L.OSM.DataLayer var map = this; - this._objectLoader = $.ajax({ - url: OSM.apiUrl(object), - dataType: "json", - success: function (data) { + this._objectLoader = new AbortController(); + fetch(OSM.apiUrl(object), { + headers: { accept: "application/json" }, + signal: this._objectLoader.signal + }) + .then(response => response.json()) + .then(function (data) { map._object = object; map._objectLayer = new L.OSM.DataLayer(null, { @@ -320,8 +321,8 @@ L.OSM.Map = L.Map.extend({ if (callback) callback(map._objectLayer.getBounds()); map.fire("overlayadd", { layer: map._objectLayer }); - } - }); + }) + .catch(() => {}); } }, @@ -346,15 +347,22 @@ L.OSM.Map = L.Map.extend({ }, setSidebarOverlaid: function (overlaid) { - var sidebarWidth = 350; + var mediumDeviceWidth = window.getComputedStyle(document.documentElement).getPropertyValue("--bs-breakpoint-md"); + var isMediumDevice = window.matchMedia(`(max-width: ${mediumDeviceWidth})`).matches; + var sidebarWidth = $("#sidebar").width(); + var sidebarHeight = $("#sidebar").height(); if (overlaid && !$("#content").hasClass("overlay-sidebar")) { $("#content").addClass("overlay-sidebar"); this.invalidateSize({ pan: false }); - if ($("html").attr("dir") !== "rtl") { + if (isMediumDevice) { + this.panBy([0, -sidebarHeight], { animate: false }); + } else if ($("html").attr("dir") !== "rtl") { this.panBy([-sidebarWidth, 0], { animate: false }); } } else if (!overlaid && $("#content").hasClass("overlay-sidebar")) { - if ($("html").attr("dir") !== "rtl") { + if (isMediumDevice) { + this.panBy([0, $("#map").height() / 2], { animate: false }); + } else if ($("html").attr("dir") !== "rtl") { this.panBy([sidebarWidth, 0], { animate: false }); } $("#content").removeClass("overlay-sidebar");