feat: node list <-> map navigation (#109)

* allow full size boot logo

* node list <-> map navigation
This commit is contained in:
Manuel
2025-03-29 19:56:49 +01:00
committed by GitHub
parent 2642d07a2f
commit 99171e87a7
7 changed files with 46 additions and 5 deletions
+6
View File
@@ -191,6 +191,12 @@ void MapPanel::setHomeLocation(float lat, float lon)
center();
}
void MapPanel::setScrolledPosition(float lat, float lon)
{
scrolled = GeoPoint(lat, lon, MapTileSettings::getZoomLevel());
center();
}
void MapPanel::setGpsPosition(float lat, float lon)
{
current = GeoPoint(lat, lon, MapTileSettings::getZoomLevel());