Enhance ADSB details view with map trail functionality and update gro… (#3020)

* Enhance ADSB details view with map trail functionality and update ground speed calculation
This commit is contained in:
Totoo
2026-02-21 14:32:20 +01:00
committed by GitHub
parent 7ea3eec016
commit 430c8e5e79
3 changed files with 134 additions and 44 deletions
+4 -2
View File
@@ -876,8 +876,10 @@ void GeoMapView::update_position(float lat, float lon, uint16_t angle, int32_t a
geopos.set_report_change(true);
geomap.set_angle(angle);
if (is_changed) geomap.move(lon_, lat_);
geomap.set_dirty();
if (is_changed) {
geomap.move(lon_, lat_);
geomap.set_dirty();
}
}
void GeoMapView::update_tag(const std::string tag) {