ചെക്ക് യൂസർമാർ, emailconfirmed, സമ്പർക്കമുഖ കാര്യനിർവാഹകർ, kiteuser, oversight, കാര്യനിർവാഹകർ, അപ്ലോഡ് സഹായി മേള തിരുത്തുന്നവർ
783
തിരുത്തലുകൾ
(ചെ.)No edit summary റ്റാഗ്: Manual revert |
No edit summary റ്റാഗ്: Reverted |
||
| വരി 2: | വരി 2: | ||
window.onload = function() { | window.onload = function() { | ||
// Find all images with | // Find all images with a source that starts with "https://tile.openstreetmap.org" | ||
var markerImages = document.querySelectorAll('img[src="https://tile.openstreetmap.org | var markerImages = document.querySelectorAll('img[src^="https://tile.openstreetmap.org"]'); | ||
// Loop through the images and | // Loop through the images and replace the base URL | ||
for (var i = 0; i < markerImages.length; i++) { | for (var i = 0; i < markerImages.length; i++) { | ||
markerImages[i].src | var oldSrc = markerImages[i].src; | ||
// Replace "https://tile.openstreetmap.org" with "https://maps.wikimedia.org" | |||
var newSrc = oldSrc.replace("https://tile.openstreetmap.org", "https://maps.wikimedia.org"); | |||
markerImages[i].src = newSrc; | |||
// Apply CSS to ensure proper display | // Apply CSS to ensure proper display | ||
തിരുത്തലുകൾ