//= depend_on settings.yml //= depend_on settings.local.yml //= depend_on layers.yml //= require leaflet/dist/leaflet-src //= require leaflet.osm //= require i18n //= require i18n/embed const OSM = { i18n: I18n }; if (navigator.languages) { OSM.i18n.locale = navigator.languages[0]; } else if (navigator.language) { OSM.i18n.locale = navigator.language; } OSM.i18n.default_locale = <%= I18n.default_locale.to_json %>; OSM.i18n.fallbacks = true; window.onload = function () { const args = Object.fromEntries(new URLSearchParams(location.search)); const options = { mapnik: { <% if Settings.key?(:tile_cdn_url) %> url: <%= Settings.tile_cdn_url.to_json %> <% end %> } }; const map = L.map("map"); map.attributionControl.setPrefix(""); map.removeControl(map.attributionControl); const isDarkTheme = args.theme === "dark" || (args.theme !== "light" && window.matchMedia("(prefers-color-scheme: dark)").matches); const layers = <%= MapLayers::embed_definitions("config/layers.yml").to_json %>; const layerId = (args.layer || "").replaceAll(" ", ""); const layerConfig = layers[layerId] || layers.mapnik; const layer = (isDarkTheme && layerConfig.leafletOsmDarkId) || layerConfig.leafletOsmId; new L.OSM[layer]({ apikey: layerConfig.apikey, ...options[layerId] }).addTo(map); if (args.marker) { L.marker(args.marker.split(","), { icon: L.icon({ iconUrl: <%= asset_path('leaflet/dist/images/marker-icon.png').to_json %>, iconSize: new L.Point(25, 41), iconAnchor: new L.Point(12, 41), shadowUrl: <%= asset_path('leaflet/dist/images/marker-shadow.png').to_json %>, shadowSize: new L.Point(41, 41) }) }).addTo(map); } const bbox = (args.bbox || "-180,-90,180,90").split(","); map.fitBounds([[bbox[1], bbox[0]], [bbox[3], bbox[2]]]); map.addControl(new L.Control.OSMReportAProblem()); }; L.Control.OSMReportAProblem = L.Control.Attribution.extend({ options: { position: "bottomright", prefix: `${OSM.i18n.t("javascripts.embed.report_problem")}` }, onAdd: function (map) { const container = L.Control.Attribution.prototype.onAdd.call(this, map); map.on("moveend", this._update, this); return container; }, _update: function () { L.Control.Attribution.prototype._update.call(this); this._container.innerHTML = this._container.innerHTML .replace("{x}", this._map.getCenter().lat) .replace("{y}", this._map.getCenter().lng) .replace("{z}", this._map.getZoom()); } });