Change to 1k granularity for points

This commit is contained in:
Evolvedexperiment 2021-03-02 19:11:17 +00:00
parent e4718a0844
commit cd4f69ef08
4 changed files with 39 additions and 7 deletions

View file

@ -276,9 +276,9 @@ function copyMapURL() {
}
function changeCellsDensity(value) {
densityOutput.value = value * 10 + "K";
if (value > 5) densityOutput.style.color = "#b12117";
else if (value > 1) densityOutput.style.color = "#dfdf12";
densityOutput.value = value * 1 + "K";
if (value > 50) densityOutput.style.color = "#b12117";
else if (value > 10) densityOutput.style.color = "#dfdf12";
else densityOutput.style.color = "#038603";
}