Map widget time selection

This commit is contained in:
Dan Paulat 2023-05-24 00:02:00 -05:00
parent f6de4d0742
commit 63a746d25f
2 changed files with 27 additions and 5 deletions

View file

@ -80,6 +80,13 @@ public:
void SelectRadarSite(std::shared_ptr<config::RadarSite> radarSite,
bool updateCoordinates = true);
/**
* @brief Selects the time associated with the active radar product.
*
* @param [in] time Product time
*/
void SelectTime(std::chrono::system_clock::time_point time);
void SetActive(bool isActive);
void SetAutoRefresh(bool enabled);
@ -132,6 +139,7 @@ signals:
double bearing,
double pitch);
void MapStyleChanged(const std::string& styleName);
void RadarSiteUpdated(std::shared_ptr<config::RadarSite> radarSite);
void RadarSweepUpdated();
};