Skip to content

Commit 3586610

Browse files
committed
fix: shrink globe bubble marker size range
1 parent 6fded7f commit 3586610

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/js/scene2_globe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ const Scene2 = {
577577
const limit = Math.max(1, scaleLimit);
578578
const normalized = Math.min(count, limit);
579579
const scale = Math.sqrt(normalized / limit);
580-
return Math.round(8 + scale * 48);
580+
return Math.round(5 + scale * 27);
581581
},
582582

583583
getCountryBubbleLabel(marker) {

0 commit comments

Comments
 (0)