added topography

This commit is contained in:
barrulus 2025-09-04 16:21:22 +01:00
parent 21df872ca2
commit 2c3692f000
5 changed files with 151 additions and 1 deletions

View file

@ -50,6 +50,7 @@ let lakes = viewbox.append("g").attr("id", "lakes");
let landmass = viewbox.append("g").attr("id", "landmass");
let texture = viewbox.append("g").attr("id", "texture");
let terrs = viewbox.append("g").attr("id", "terrs");
let topography = viewbox.append("g").attr("id", "topography");
let biomes = viewbox.append("g").attr("id", "biomes");
let cells = viewbox.append("g").attr("id", "cells");
let gridOverlay = viewbox.append("g").attr("id", "gridOverlay");
@ -249,7 +250,7 @@ document.addEventListener("DOMContentLoaded", async () => {
hideLoading();
await checkLoadParameters();
}
restoreDefaultEvents; // apply default viewbox events
restoreDefaultEvents(); // apply default viewbox events
initiateAutosave();
});