Add altitude-based color coding for map markers in adsb (#3004)

* Add altitude-based color coding for map markers in adsb
This commit is contained in:
Totoo
2026-02-19 20:50:49 +01:00
committed by GitHub
parent 6498f5a1b2
commit 0685fb7a9f
4 changed files with 50 additions and 4 deletions
+3 -2
View File
@@ -62,13 +62,14 @@ struct GeoMarker {
float lon{0};
uint16_t angle{0};
std::string tag{""};
Color color{Color::blue()};
GeoMarker& operator=(GeoMarker& rhs) {
GeoMarker& operator=(const GeoMarker& rhs) {
lat = rhs.lat;
lon = rhs.lon;
angle = rhs.angle;
tag = rhs.tag;
color = rhs.color;
return *this;
}
};