L.Control.OSMReportAProblem = L.Control.Attribution.extend({
options: {
position: "bottomright",
- prefix: `<a href="https://www.openstreetmap.org/fixthemap?lat={x}&lon={y}&zoom={z}" target="_blank">${OSM.i18n.t("javascripts.embed.report_problem")}</a>`
+ prefix: `<a href="/fixthemap?lat={x}&lon={y}&zoom={z}" target="_blank">${OSM.i18n.t("javascripts.embed.report_problem")}</a>`
},
onAdd: function (map) {
const url = location.protocol + "//" + location.host;
idContext.preauth({
url: url,
- apiUrl: url === "https://www.openstreetmap.org" ? "https://api.openstreetmap.org" : url,
+ apiUrl: url.replace("www.openstreetmap.org", "api.openstreetmap.org"),
access_token: container.dataset.token
});