mirror of
https://github.com/markqvist/Sideband.git
synced 2025-09-18 11:54:47 -04:00
Added telemetry system, location sharing and map view for shared locations
This commit is contained in:
parent
a9160b558b
commit
314499109c
4 changed files with 322 additions and 148 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue