From 6bd183dd6f9fd70d5d211d3225ddba6fea9b1221 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Wed, 30 Jul 2025 18:03:27 -0500 Subject: [PATCH] feat: Further increase spidering distance to 100 pixels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Increased nearbyDistance from 60 to 100 pixels for maximum clickability - Increased circleSpiralSwitchover from 12 to 15 markers - Provides even better separation when clicking on densely packed APRS packets 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- assets/js/map.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/map.ts b/assets/js/map.ts index 08b3813..ca7e08b 100644 --- a/assets/js/map.ts +++ b/assets/js/map.ts @@ -571,8 +571,8 @@ let MapAPRSMap = { if (typeof window.OverlappingMarkerSpiderfier !== "undefined") { self.oms = new window.OverlappingMarkerSpiderfier(self.map, { keepSpiderfied: true, - nearbyDistance: 60, - circleSpiralSwitchover: 12, + nearbyDistance: 100, + circleSpiralSwitchover: 15, legWeight: 2, });