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:
James Smith
2025-12-30 15:28:37 +00:00
parent ebe0bf9431
commit 13be9c189e
+7 -3
View File
@@ -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);
}
}
}
});