import React, { useRef, useEffect, useState } from "react"; import Gradient from "javascript-color-gradient"; import mapboxgl from "!mapbox-gl"; // eslint-disable-line import/no-webpack-loader-syntax import styles from "../styles/Map.module.css"; import cellModEdits from "../data/cellModEditCounts.json"; import ToggleLayersControl from "./ToggleLayersControl"; mapboxgl.accessToken = process.env.NEXT_PUBLIC_MAPBOX_TOKEN; const colorGradient = new Gradient(); colorGradient.setGradient("#888888", "#00FF00", "#FFFF00", "#FF0000"); colorGradient.setMidpoint(300); const Map = () => { const mapContainer = useRef(null); const map = useRef(null); useEffect(() => { if (map.current) return; // initialize map only once map.current = new mapboxgl.Map({ container: mapContainer.current, style: { version: 8, sources: { "raster-tiles": { type: "raster", tiles: ["https://tiles.modmapper.com/{z}/{x}/{y}.jpg"], tileSize: 256, attribution: 'Map tiles by UESP', minzoom: 1, maxzoom: 8, }, }, layers: [ { id: "simple-tiles", type: "raster", source: "raster-tiles", }, ], glyphs: "mapbox://fonts/mapbox/{fontstack}/{range}.pbf", }, center: [0, 0], zoom: 0, minZoom: -2, maxZoom: 8, renderWorldCopies: false, }); }); useEffect(() => { if (!map.current) return; // wait for map to initialize map.current.on("load", () => { var zoom = map.current.getZoom(); var viewportNW = map.current.project([-180, 85.051129]); var cellSize = Math.pow(2, zoom + 2); const graticule = { type: "FeatureCollection", features: [], }; for (let x = 0; x < 128; x += 1) { let lng = map.current.unproject([x * cellSize + viewportNW.x, -90]).lng; graticule.features.push({ type: "Feature", geometry: { type: "LineString", coordinates: [ [lng, -90], [lng, 90], ], }, properties: { value: x }, }); } for (let y = 0; y < 128; y += 1) { let lat = map.current.unproject([ -180, y * cellSize + viewportNW.y, ]).lat; graticule.features.push({ type: "Feature", geometry: { type: "LineString", coordinates: [ [-180, lat], [180, lat], ], }, properties: { value: y }, }); } map.current.addSource("graticule", { type: "geojson", data: graticule, }); map.current.addLayer({ id: "graticule", type: "line", source: "graticule", }); const gridLabelPoints = { type: "FeatureCollection", features: [], }; for (let x = 0; x < 128; x += 1) { for (let y = 0; y < 128; y += 1) { let nw = map.current.unproject([ x * cellSize + viewportNW.x + cellSize / 32, y * cellSize + viewportNW.y + cellSize / 32, ]); gridLabelPoints.features.push({ type: "Feature", geometry: { type: "Point", coordinates: [nw.lng, nw.lat], }, properties: { label: `${x - 57}, ${50 - y}`, }, }); } } map.current.addSource("grid-labels-source", { type: "geojson", data: gridLabelPoints, }); map.current.addLayer( { id: "grid-labels-layer", type: "symbol", source: "grid-labels-source", layout: { "text-field": ["get", "label"], "text-font": ["Open Sans Semibold", "Arial Unicode MS Bold"], "text-offset": [0, 0], "text-anchor": "top-left", "text-rotation-alignment": "map", }, paint: { "text-halo-width": 1, "text-halo-blur": 3, "text-halo-color": "rgba(255,255,255,0.8)", }, minzoom: 4, }, "graticule" ); const grid = { type: "FeatureCollection", features: [], }; for (let x = 0; x < 128; x += 1) { for (let y = 0; y < 128; y += 1) { let nw = map.current.unproject([ x * cellSize + viewportNW.x, y * cellSize + viewportNW.y, ]); let ne = map.current.unproject([ x * cellSize + viewportNW.x + cellSize, y * cellSize + viewportNW.y, ]); let se = map.current.unproject([ x * cellSize + viewportNW.x + cellSize, y * cellSize + viewportNW.y + cellSize, ]); let sw = map.current.unproject([ x * cellSize + viewportNW.x, y * cellSize + viewportNW.y + cellSize, ]); const editCount = cellModEdits[`${x - 57},${50 - y}`]; grid.features.push({ type: "Feature", geometry: { type: "Polygon", coordinates: [ [ [nw.lng, nw.lat], [ne.lng, ne.lat], [se.lng, se.lat], [sw.lng, sw.lat], [nw.lng, nw.lat], ], ], }, properties: { x: x, y: y, cell: [x - 57, 50 - y], label: `${x - 57}, ${50 - y}`, color: editCount ? colorGradient.getColor(editCount) : "#888888", }, }); } } console.log(grid); map.current.addSource("grid-source", { type: "geojson", data: grid, }); map.current.addLayer( { id: "grid-layer", type: "fill", source: "grid-source", paint: { "fill-color": ["get", "color"], "fill-opacity": 0.25, "fill-outline-color": "transparent", }, }, "grid-labels-layer" ); map.current.addControl(new mapboxgl.FullscreenControl()); map.current.addControl(new mapboxgl.NavigationControl()); }); map.current.on("click", "grid-layer", (e) => { console.log(e.features[0]); }); }); return (