Skip to content

Commit

Permalink
Line size fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StrawberryMaster committed Aug 9, 2023
1 parent 69981b9 commit 5b3ed42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function createMap(data, accessible) {
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 * 3 / 3.14;
LINE_SIZE = LINE_SIZE * 2.5 / 3.14;
}

let max_lat = 0;
Expand Down

0 comments on commit 5b3ed42

Please sign in to comment.