Synchronize map movements

This commit is contained in:
Dan Paulat 2021-11-22 13:03:28 -06:00
parent 372848c25f
commit dd452a0e2c
3 changed files with 108 additions and 4 deletions

View file

@ -35,6 +35,11 @@ public:
std::vector<float> GetElevationCuts() const;
void SelectElevation(float elevation);
void SelectRadarProduct(common::Level2Product product);
void SetMapParameters(double latitude,
double longitude,
double zoom,
double bearing,
double pitch);
private:
void changeStyle();
@ -58,6 +63,11 @@ private slots:
void mapChanged(QMapboxGL::MapChange);
signals:
void MapParametersChanged(double latitude,
double longitude,
double zoom,
double bearing,
double pitch);
void RadarSweepUpdated();
};