mirror of
https://github.com/smittix/intercept.git
synced 2026-07-23 08:28:11 -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
|
// Update polar plot with pass trajectory and real-time position
|
||||||
if (pos.elevation > 0) {
|
if (selectedPass) {
|
||||||
drawRealTimePositionOnPolar(pos);
|
drawPolarPlot(selectedPass);
|
||||||
|
// Draw current position on top if satellite is visible
|
||||||
|
if (pos.elevation > 0) {
|
||||||
|
drawRealTimePositionOnPolar(pos);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user