Open main menu

Changes

MediaWiki:Common.js

772 bytes added, 16:19, 20 November 2024
no edit summary
}
async function createStaticMap(mapContainer, lat, lon, zoom, width, height) {const TILE_SIZE = 256; const centerX = ((lon + 180) / 360) * Math.pow(2, zoom) * TILE_SIZE; const centerY = ((1 - Math.log(Math.tan(lat * Math.PI / 180) + 1 /Math.cos(lat *Math.PI / 180)) / Math.PI) / 2) * doesn't work yetMath.pow(2, zoom) * JavaScript parse errorTILE_SIZE; const topLeftX = centerX - width / 2, topLeftY = centerY - height / 2; const startTileX = Math.floor(topLeftX / TILE_SIZE), startTileY = Math.floor(topLeftY / TILE_SIZE); const xOffset = -(topLeftX % TILE_SIZE), yOffset = -(topLeftY % TILE_SIZE); const xTiles = Math.ceil(width / TILE_SIZE) + 1, yTiles = Math.ceil(height / TILE_SIZE) + 1; mapContainer.style.cssText = `width:${width}px;height:${height}px;position:relative;overflow:hidden`; for (let x = 0; x < xTiles; x++) {for (let y = 0; y < yTiles; y++) {const img = document.createElement("img"); img.src = `https://tile.openstreetmap.org/${zoom}/${startTileX + x}/${startTileY + y}.png`; img.style.cssText = `position:absolute;width:${TILE_SIZE}px;height: Parse error${TILE_SIZE}px;left: Missing ${(x * TILE_SIZE) in parenthetical in file 'MediaWiki+ xOffset}px;top:Common${(y * TILE_SIZE) + yOffset}px`; mapContainer.js' on line 15appendChild(img);}}}
var mapbox = document.addEventListener("DOMContentLoaded", functionquerySelector() { // Find all map elements in the document const mapElements = document'.querySelectorAll("infobox-map[lat][lng][zoom]"');
mapElements.forEachfunction findFloatAttr((mapElementattr) => { let floatRegex = // Extract the map attributes const lat = parseFloat\d+(mapElement\.getAttribute("lat"\d+));?/ const lon = parseFloat(mapElement return +mapbox.innerText.getAttributesplit("lng")attr); const zoom = parseInt(mapElement[1].getAttributematch("zoom"), 10floatRegex);[0] const width = 300; // Set width for the static map display const height = 300; // Set height for the static map display // Create a container div for the static map const mapContainer = document.createElement("div");}
// Call Extract the function to create the static map inside the containerattributes createStaticMapvar lat = findFloatAttr(mapContainer, "lat, ");var lon, = findFloatAttr("lng");var zoom = findFloatAttr("zoom, ");var width, = 300; // Set width for the static map displayvar height)= 300;// Set height for the static map display
// Create an anchor element that wraps a container div for the static map container const mapLink var mapContainer = document.createElement("adiv"); mapLink.href = `https://hitchmap.com/#location,${lat},${lon},${zoom}`; mapLink.appendChild(mapContainer);
// Replace Call the original <function to create the static map> element with inside the link containing the map container mapElement.replaceWithcreateStaticMap(mapLink); });}mapContainer, lat, lon, zoom, width, height);
**// Create an anchor element that wraps the map containervar mapLink = document.createElement("a");mapLink.href = `https://hitchmap.com/#location,${lat},${lon},${zoom}`;mapLink.appendChild(mapContainer); // Replace the original <map> element with the link containing the map containermapbox.innerHTML = '';mapbox.appendChild(mapLink);