feat: Increase spidering distance for overlapping markers

- Increased nearbyDistance from 40 to 60 pixels for better clickability
- Increased circleSpiralSwitchover from 9 to 12 markers before switching to spiral layout
- Improves user experience when clicking on overlapping APRS packets

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-30 17:46:37 -05:00
parent 90d7f58a53
commit d99879dd56
No known key found for this signature in database

View file

@ -571,8 +571,8 @@ let MapAPRSMap = {
if (typeof window.OverlappingMarkerSpiderfier !== "undefined") {
self.oms = new window.OverlappingMarkerSpiderfier(self.map, {
keepSpiderfied: true,
nearbyDistance: 40,
circleSpiralSwitchover: 9,
nearbyDistance: 60,
circleSpiralSwitchover: 12,
legWeight: 2,
});