mirror of
https://github.com/smittix/intercept.git
synced 2026-06-08 14:11:54 -07:00
Fix satellite tab to redraw polar plot with trajectory on position update
The polar plot now redraws the pass trajectory before overlaying the current position indicator, matching the dashboard behavior. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -8548,9 +8548,13 @@
|
||||
}
|
||||
}
|
||||
|
||||
// Update polar plot with real-time position
|
||||
if (pos.elevation > 0) {
|
||||
drawRealTimePositionOnPolar(pos);
|
||||
// Update polar plot with pass trajectory and real-time position
|
||||
if (selectedPass) {
|
||||
drawPolarPlot(selectedPass);
|
||||
// Draw current position on top if satellite is visible
|
||||
if (pos.elevation > 0) {
|
||||
drawRealTimePositionOnPolar(pos);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user