X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/925d12cc8176414d0f9531832862a5825783d132..9bfae01a99665342ce2ce83a06f8ef32432dcfa4:/app/assets/javascripts/leaflet.map.js
diff --git a/app/assets/javascripts/leaflet.map.js b/app/assets/javascripts/leaflet.map.js
index 88d16bc8e..d221ae208 100644
--- a/app/assets/javascripts/leaflet.map.js
+++ b/app/assets/javascripts/leaflet.map.js
@@ -22,7 +22,7 @@ L.OSM.Map = L.Map.extend({
var copyright = I18n.t("javascripts.map.copyright_text", { copyright_link: copyright_link });
var donate = $("", {
- "href": "https://donate.openstreetmap.org",
+ "href": "https://supporting.openstreetmap.org",
"class": "donate-attr",
"text": I18n.t("javascripts.map.make_a_donation")
}).prop("outerHTML");
@@ -51,12 +51,12 @@ L.OSM.Map = L.Map.extend({
}).prop("outerHTML");
var thunderforest = I18n.t("javascripts.map.thunderforest_credit", { thunderforest_link: thunderforest_link });
- var memomaps_link = $("", {
- href: "https://memomaps.de/",
+ var tracestrack_link = $("", {
+ href: "https://www.tracestrack.com/",
target: "_blank",
- text: I18n.t("javascripts.map.memomaps")
+ text: I18n.t("javascripts.map.tracestrack")
}).prop("outerHTML");
- var memomaps = I18n.t("javascripts.map.opnvkarte_credit", { memomaps_link: memomaps_link });
+ var tracestrack = I18n.t("javascripts.map.tracestrack_credit", { tracestrack_link: tracestrack_link });
var hotosm_link = $("", {
href: "https://www.hotosm.org/",
@@ -99,12 +99,15 @@ L.OSM.Map = L.Map.extend({
}));
}
- this.baseLayers.push(new L.OSM.OPNVKarte({
- attribution: copyright + ". " + memomaps + ". " + terms,
- code: "O",
- keyid: "opnvkarte",
- name: I18n.t("javascripts.map.base.opnvkarte")
- }));
+ if (OSM.TRACESTRACK_KEY) {
+ this.baseLayers.push(new L.OSM.TracestrackTopo({
+ attribution: copyright + ". " + tracestrack + ". " + terms,
+ apikey: OSM.TRACESTRACK_KEY,
+ code: "P",
+ keyid: "tracestracktopo",
+ name: I18n.t("javascripts.map.base.tracestracktop_topo")
+ }));
+ }
this.baseLayers.push(new L.OSM.HOT({
attribution: copyright + ". " + hotosm + ". " + terms,