Added a settings bar

- Toggle Zoom button: Allows to toggle map zoom in
This commit is contained in:
Janek
2024-01-02 01:06:30 +01:00
parent dc7ff86c38
commit 7cf75a03f5
4 changed files with 45 additions and 7 deletions

View File

@@ -414,3 +414,7 @@ addEventListener("DOMContentLoaded", (e) => {
console.log(`[radarflow] connecting to ${websocketAddr}`)
connect()
});
function toggleZoom() {
shouldZoom = !shouldZoom
}