Skip to content

Commit

Permalink
Reverted back to smaller (more accurate) sizes
Browse files Browse the repository at this point in the history
per feedback
  • Loading branch information
StrawberryMaster committed Aug 13, 2023
1 parent 85ca5ff commit 9403c57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions static/js/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ function createMap(data, accessible) {
let DOT_SIZE = 0.29890625 / 360 * FULL_WIDTH;
let LINE_SIZE = 0.09 / 360 * FULL_WIDTH;
if (document.getElementById("smaller-dots").checked) {
DOT_SIZE = DOT_SIZE * 3 / 3.14;
LINE_SIZE = LINE_SIZE * 2.5 / 3.14;
DOT_SIZE = DOT_SIZE * 2 / 3.14;
LINE_SIZE = LINE_SIZE * 1.5 / 3.14;
}

let max_lat = 0;
Expand Down Expand Up @@ -191,4 +191,4 @@ function createMap(data, accessible) {
}
}, 100);
}, 100);
}
}

0 comments on commit 9403c57

Please sign in to comment.