Added telemetry system, location sharing and map view for shared locations

This commit is contained in:
Mark Qvist 2023-10-22 01:12:55 +02:00
parent a9160b558b
commit 314499109c
4 changed files with 322 additions and 148 deletions

View file

@ -327,9 +327,9 @@ class MarkerMapLayer(MapLayer):
marker.y = int(y - marker.height * marker.anchor_y)
if hasattr(marker, "children"):
if marker.children != None and len(marker.children) > 0:
c = marker.children[0]
c.x = marker.x
c.y = marker.y+dp(16)
for c in marker.children:
c.x = marker.x
c.y = marker.y+dp(16)
def unload(self):
self.clear_widgets()