From 9403c572a09f90303b7db36a664214990f073a26 Mon Sep 17 00:00:00 2001 From: Felipe <41008398+StrawberryMaster@users.noreply.github.com> Date: Sun, 13 Aug 2023 15:14:02 +0000 Subject: [PATCH] Reverted back to smaller (more accurate) sizes per feedback --- static/js/generate.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/generate.js b/static/js/generate.js index 3a498d8..d71e168 100644 --- a/static/js/generate.js +++ b/static/js/generate.js @@ -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; @@ -191,4 +191,4 @@ function createMap(data, accessible) { } }, 100); }, 100); -} +} \ No newline at end of file