assets dir for clarity
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 866 B After Width: | Height: | Size: 866 B |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
@ -46,10 +46,10 @@ requirements = hostpython3, python3, kivy, plyer, android, mapview, requests, ur
|
|||||||
#garden_requirements = mapview
|
#garden_requirements = mapview
|
||||||
|
|
||||||
# (str) Presplash of the application
|
# (str) Presplash of the application
|
||||||
presplash.filename = ./presplash.png
|
presplash.filename = assets/splash.png
|
||||||
|
|
||||||
# (str) Icon of the application
|
# (str) Icon of the application
|
||||||
icon.filename = ./icon.png
|
icon.filename = assets/icon.png
|
||||||
|
|
||||||
# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
|
# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
|
||||||
orientation = portrait
|
orientation = portrait
|
||||||
|
|||||||
2707
compass.svg
|
Before Width: | Height: | Size: 101 KiB |
@ -22,13 +22,13 @@
|
|||||||
selfmark.lon = app.gps_data.get('lon', 0)
|
selfmark.lon = app.gps_data.get('lon', 0)
|
||||||
|
|
||||||
MapMarker:
|
MapMarker:
|
||||||
source: 'marker_self.png'
|
source: 'assets/marker_self.png'
|
||||||
id: selfmark
|
id: selfmark
|
||||||
anchor_x: 0.5
|
anchor_x: 0.5
|
||||||
anchor_y: 0
|
anchor_y: 0
|
||||||
|
|
||||||
MapMarker:
|
MapMarker:
|
||||||
source: 'marker.png'
|
source: 'assets/marker_dest.png'
|
||||||
id: centermark
|
id: centermark
|
||||||
anchor_x: 0.5
|
anchor_x: 0.5
|
||||||
anchor_y: 0
|
anchor_y: 0
|
||||||
@ -42,17 +42,17 @@
|
|||||||
IconButton:
|
IconButton:
|
||||||
pos_hint: {"x":.8, "top":0.95}
|
pos_hint: {"x":.8, "top":0.95}
|
||||||
size_hint: 0.2, 0.2
|
size_hint: 0.2, 0.2
|
||||||
source: 'dark_to_compass_icon.png'
|
source: 'assets/dark_to_compass_icon.png'
|
||||||
on_press: root.manager.current = 'compass'; app.set_destination()
|
on_press: root.manager.current = 'compass'; app.set_destination()
|
||||||
IconButton:
|
IconButton:
|
||||||
source: 'to_self.png'
|
source: 'assets/to_self.png'
|
||||||
pos_hint: {"x":0.4, "bottom":0.1}
|
pos_hint: {"x":0.4, "bottom":0.1}
|
||||||
size_hint: 0.2, 0.2
|
size_hint: 0.2, 0.2
|
||||||
on_press: app.center_map_on_gps()
|
on_press: app.center_map_on_gps()
|
||||||
IconButton:
|
IconButton:
|
||||||
pos_hint: {"x":0.8, "bottom":0.1}
|
pos_hint: {"x":0.8, "bottom":0.1}
|
||||||
size_hint: 0.2, 0.2
|
size_hint: 0.2, 0.2
|
||||||
source: 'to_settings.png'
|
source: 'assets/to_settings.png'
|
||||||
on_press: root.manager.current = 'settings';
|
on_press: root.manager.current = 'settings';
|
||||||
|
|
||||||
|
|
||||||
@ -88,7 +88,7 @@
|
|||||||
pos: 0, 0.1
|
pos: 0, 0.1
|
||||||
font_size: '40sp'
|
font_size: '40sp'
|
||||||
Image:
|
Image:
|
||||||
source: 'needle.png'
|
source: 'assets/needle.png'
|
||||||
canvas.before:
|
canvas.before:
|
||||||
PushMatrix
|
PushMatrix
|
||||||
Rotate:
|
Rotate:
|
||||||
@ -99,7 +99,7 @@
|
|||||||
PopMatrix
|
PopMatrix
|
||||||
Image:
|
Image:
|
||||||
id: to_dest
|
id: to_dest
|
||||||
source: 'needle_to_dest.png'
|
source: 'assets/needle_to_dest.png'
|
||||||
canvas.before:
|
canvas.before:
|
||||||
PushMatrix
|
PushMatrix
|
||||||
Rotate:
|
Rotate:
|
||||||
@ -109,4 +109,4 @@
|
|||||||
canvas.after:
|
canvas.after:
|
||||||
PopMatrix
|
PopMatrix
|
||||||
Image:
|
Image:
|
||||||
source: 'pivot.png'
|
source: 'assets/pivot.png'
|
||||||