mirror of
https://github.com/placeAtlas/atlas.git
synced 2025-01-15 22:56:56 +01:00
Merge pull request #681 from Codixer/imskyyc-patch-1
Add view toggle buttons
This commit is contained in:
commit
2ffdb22dd6
2 changed files with 29 additions and 2 deletions
|
@ -136,6 +136,33 @@ async function init(){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function changeOverlapMode(){
|
||||||
|
console.log(mode)
|
||||||
|
switch(mode){
|
||||||
|
case "overlap":
|
||||||
|
window.location.href = "?mode=explore"
|
||||||
|
break;
|
||||||
|
case "explore":
|
||||||
|
window.location.href = "?"
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
window.location.href = "?mode=overlap"
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const modeMap = {
|
||||||
|
"view": "Overlap",
|
||||||
|
"overlap": "Explore",
|
||||||
|
"explore": "Atlas"
|
||||||
|
}
|
||||||
|
|
||||||
|
const toggleMode = document.getElementById("toggleMode");
|
||||||
|
toggleMode.onclick = changeOverlapMode;
|
||||||
|
toggleMode.innerHTML = modeMap[mode];
|
||||||
|
|
||||||
document.getElementById("loading").style.display = "none";
|
document.getElementById("loading").style.display = "none";
|
||||||
|
|
||||||
document.getElementById("zoomInButton").addEventListener("click", function(e){
|
document.getElementById("zoomInButton").addEventListener("click", function(e){
|
||||||
|
|
|
@ -106,8 +106,8 @@ <h1 id="title">The /r/place Atlas</h1>
|
||||||
<div id="entriesListContainer">
|
<div id="entriesListContainer">
|
||||||
<nav>
|
<nav>
|
||||||
<a id="aboutLink" href="./about.html">About</a>
|
<a id="aboutLink" href="./about.html">About</a>
|
||||||
<a id="drawLink" href="./index.html?mode=draw">Contribute</a>
|
<a id="drawLink" href="./index.html?mode=draw">Draw</a>
|
||||||
<a id="overlapLink" href="./index.html?mode=overlap">Overlap</a>
|
<a id="toggleMode" onclick="return changeOverlapMode()">Overlap</a>
|
||||||
<button title="Discord" onclick="window.location.href='https://discord.gg/pJkm23b2nA'">
|
<button title="Discord" onclick="window.location.href='https://discord.gg/pJkm23b2nA'">
|
||||||
<img class="Discord" alt="Discord Logo" src="./_img/discord.svg">
|
<img class="Discord" alt="Discord Logo" src="./_img/discord.svg">
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Reference in a new issue