"മീഡിയവിക്കി:Common.js" എന്ന താളിന്റെ പതിപ്പുകൾ തമ്മിലുള്ള വ്യത്യാസം
No edit summary |
No edit summary |
||
| വരി 2: | വരി 2: | ||
OpenStreetMap marker URL fix | OpenStreetMap marker URL fix | ||
============================================================ */ | ============================================================ */ | ||
mw.hook('kartographer.ready').add(function ( | mw.hook('kartographer.ready').add(function () { | ||
if (window.L | if (!window.L) return; | ||
var oldGetIconUrl = L.Icon.Default.prototype._getIconUrl; | |||
} | L.Icon.Default.prototype._getIconUrl = function (name) { | ||
var url = oldGetIconUrl.call(this, name); | |||
return url.replace( | |||
'https://tile.openstreetmap.org/v4/marker/', | |||
'https://maps.wikimedia.org/v4/marker/' | |||
); | |||
}; | |||
}); | }); | ||