Skip to content

Commit

Permalink
Merge pull request #38 from zeli-b/dev/parallel-label
Browse files Browse the repository at this point in the history
change parallel division level
  • Loading branch information
junhg0211 authored Apr 22, 2024
2 parents dc8c172 + c2c5f9e commit d999ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function renderParallels() {
renderLattitude(data.miny + height / 2, equatorColor, "0°");

for (let j = -1; j <= 1; j++) {
[6, 18, 36, 72, 360].forEach((divisor) => {
[6, 12, 24, 72, 360].forEach((divisor) => {
if ((camera.zoom * width) / divisor <= 300) {
return;
}
Expand Down

0 comments on commit d999ec8

Please sign in to comment.