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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user