- $.get($(this).attr("href"), function (html) {
- displayMoreChangesets(div, html);
- enableChangesetIntersectionObserver();
- updateMap();
- });
+ const data = new URLSearchParams();
+
+ if (location.pathname === "/history") {
+ setBboxFetchData(data);
+ }
+
+ const url = new URL($(this).attr("href"), location);
+ setListFetchData(data, url);
+
+ fetch(url.pathname + "?" + data)
+ .then(response => response.text())
+ .then(function (html) {
+ displayMoreChangesets(div, html);
+ enableChangesetIntersectionObserver();
+
+ updateMap();
+ });
+ }
+
+ function setBboxFetchData(data) {
+ const crs = map.options.crs;
+ const sw = map.getBounds().getSouthWest();
+ const ne = map.getBounds().getNorthEast();
+ const swClamped = crs.unproject(crs.project(sw));
+ const neClamped = crs.unproject(crs.project(ne));
+
+ if (sw.lat >= swClamped.lat || ne.lat <= neClamped.lat || ne.lng - sw.lng < 360) {
+ data.set("bbox", map.getBounds().wrap().toBBoxString());
+ }
+ }
+
+ function setListFetchData(data, url) {
+ const params = new URLSearchParams(url.search);
+
+ data.set("list", "1");
+
+ if (params.has("before")) {
+ data.set("before", params.get("before"));
+ }
+ if (params.has("after")) {
+ data.set("after", params.get("after"));
+ }