SCRUM 92: mapview store integration #24

Merged
hasslesstech merged 5 commits from lab5/shmuliar-SCRUM-92-mapview-store-integration into dev 2026-03-14 18:07:31 +02:00
Showing only changes of commit 1c856dca0e - Show all commits

View File

@@ -69,7 +69,7 @@ class MapViewApp(App):
"""
lat, lon = point[0], point[1]
if not hasattr(self, 'car_marker'):
if not self.car_marker:
self.car_marker = MapMarker(lat=lat, lon=lon, source='./images/car')
self.mapview.add_marker(self.car_marker)
else: