#:import random random.random #:import RiseInTransition kivy.uix.screenmanager.RiseInTransition : 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 : BoxLayout: Button: text: 'My settings button' Button: text: 'Back to menu' on_press: root.manager.current = 'map'