1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Map: Add Aurora prediction and Maidenhead grid

This commit is contained in:
srcejon
2025-06-09 10:23:12 +01:00
parent 1aeac6e268
commit 6c9dd36f8b
14 changed files with 1001 additions and 2 deletions
+18
View File
@@ -177,6 +177,24 @@ void CesiumInterface::showfoF2(bool show)
send(obj);
}
void CesiumInterface::showMagDec(bool show)
{
QJsonObject obj {
{"command", "showMagneticDeclination"},
{"show", show}
};
send(obj);
}
void CesiumInterface::showMaidenheadGrid(bool show)
{
QJsonObject obj {
{"command", "showMaidenheadGrid"},
{"show", show}
};
send(obj);
}
void CesiumInterface::showLayer(const QString& layer, bool show)
{
QJsonObject obj {