55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
#:import random random.random
|
|
#:import RiseInTransition kivy.uix.screenmanager.RiseInTransition
|
|
|
|
|
|
|
|
<MapScreen>:
|
|
BoxLayout:
|
|
orientation: 'vertical'
|
|
ActionBar:
|
|
pos_hint: {'top':1}
|
|
ActionView:
|
|
use_separator: True
|
|
ActionPrevious:
|
|
title: 'Social Cycling'
|
|
with_previous: False
|
|
ActionButton:
|
|
important: True
|
|
text: 'we ride together'
|
|
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:
|
|
orientation: 'vertical'
|
|
|
|
ActionBar:
|
|
pos_hint: {'top':1}
|
|
ActionView:
|
|
use_separator: True
|
|
ActionPrevious:
|
|
title: 'Social Cycling'
|
|
with_previous: False
|
|
ActionButton:
|
|
important: True
|
|
text: 'set destination'
|
|
on_press: root.manager.current = 'map'
|
|
|
|
|
|
|