项目更新

This commit is contained in:
2026-08-27 16:57:16 +08:00
parent 7aca9a9394
commit e26f7eb52f
3 changed files with 96 additions and 58 deletions
@@ -70,6 +70,7 @@ public:
bool show_icao = true;
bool show_call_sign = false;
bool show_fly_status = false;
bool show_heading = false;
PSC_USE_JSON
};
class Data_Source_Map_Display_Config {
@@ -129,7 +130,8 @@ struct Type_Descriptor<Data_Source_Map_Display_Data> {
ADMINIVE_FIELD_LABEL(T, base_station_scale, "基站显示大小").creatable().editable().number_input(),
ADMINIVE_FIELD_LABEL(T, show_icao, "显示 ICAO").creatable().editable().boolean_input(),
ADMINIVE_FIELD_LABEL(T, show_call_sign, "显示呼号").creatable().editable().boolean_input(),
ADMINIVE_FIELD_LABEL(T, show_fly_status, "显示飞行状态").creatable().editable().boolean_input());
ADMINIVE_FIELD_LABEL(T, show_fly_status, "显示飞行状态").creatable().editable().boolean_input(),
ADMINIVE_FIELD_LABEL(T, show_heading, "显示飞机角度").creatable().editable().boolean_input());
}
};
template <>