34 lines
844 B
Plaintext
34 lines
844 B
Plaintext
#:import random random.random
|
|
#:import RiseInTransition kivy.uix.screenmanager.RiseInTransition
|
|
|
|
<MapScreen>:
|
|
BoxLayout:
|
|
Button:
|
|
text: 'Goto settings'
|
|
on_press: root.manager.current = 'compass'
|
|
|
|
MapView:
|
|
id: mapview
|
|
lat: 28.89335172
|
|
lon: 76.59449171
|
|
zoom: 15
|
|
|
|
on_map_relocated: centermark.lat = mapview.lat; centermark.lon = mapview.lon
|
|
|
|
MapMarker:
|
|
id: centermark
|
|
anchor_x: 0.2
|
|
anchor_y: 0.3
|
|
lat: 28.89335172
|
|
lon: 76.59449171
|
|
|
|
|
|
|
|
<CompassScreen>:
|
|
BoxLayout:
|
|
Button:
|
|
text: 'My settings button'
|
|
Button:
|
|
text: 'Back to menu'
|
|
on_press: root.manager.current = 'map'
|