2020-09-28 22:10:13 -04:00
|
|
|
from kivy.app import App
|
2020-10-14 13:47:43 -04:00
|
|
|
from kivy.utils import platform
|
|
|
|
from kivymd.uix.dialog import MDDialog
|
2020-09-28 22:10:13 -04:00
|
|
|
|
|
|
|
class GpsHelper():
|
2020-10-14 13:47:43 -04:00
|
|
|
has_centered_map = False
|
|
|
|
|
2020-09-28 22:10:13 -04:00
|
|
|
def run(self):
|
|
|
|
# Start blinking the GpsBlinker
|
|
|
|
|
|
|
|
# Get a reference to GpsBlinker, then call blink()
|
2020-10-14 13:47:43 -04:00
|
|
|
#gps_blinker = App.get_running_app().root.ids.forestmapview.ids.blinker
|
2020-09-28 22:10:13 -04:00
|
|
|
#gps_blinker.blink()
|
|
|
|
|
2020-10-14 13:47:43 -04:00
|
|
|
# Request permissions on Android
|
|
|
|
if platform == 'android':
|
|
|
|
from android.permissions import Permission, request_permissions
|
|
|
|
def callback(permission, results):
|
|
|
|
if all([res for res in results]):
|
|
|
|
print("Got all permissions")
|
|
|
|
from plyer import gps
|
|
|
|
gps.configure(on_location=self.update_blinker_position,
|
|
|
|
on_status=self.on_auth_status)
|
|
|
|
gps.start(minTime=1000, minDistance=0)
|
|
|
|
else:
|
|
|
|
print("Did not get all permissions")
|
|
|
|
|
|
|
|
request_permissions([Permission.ACCESS_COARSE_LOCATION,
|
|
|
|
Permission.ACCESS_FINE_LOCATION], callback)
|
|
|
|
|
|
|
|
# Configure GPS
|
|
|
|
if platform == 'ios':
|
|
|
|
from plyer import gps
|
|
|
|
gps.configure(on_location=self.update_blinker_position,
|
|
|
|
on_status=self.on_auth_status)
|
|
|
|
gps.start(minTime=1000, minDistance=0)
|
|
|
|
|
|
|
|
|
|
|
|
def update_blinker_position(self, *args, **kwargs):
|
|
|
|
my_lat = kwargs['lat']
|
|
|
|
my_lon = kwargs['lon']
|
|
|
|
print("GPS POSITION", my_lat, my_lon)
|
|
|
|
# Update GpsBlinker position
|
|
|
|
gps_blinker = App.get_running_app().root.ids.mapview.ids.blinker
|
|
|
|
gps_blinker.lat = my_lat
|
|
|
|
gps_blinker.lon = my_lon
|
|
|
|
|
|
|
|
# Center map on gps
|
|
|
|
if not self.has_centered_map:
|
|
|
|
map = App.get_running_app().root.ids.mapview
|
|
|
|
map.center_on(my_lat, my_lon)
|
|
|
|
self.has_centered_map = True
|
|
|
|
|
|
|
|
|
|
|
|
def on_auth_status(self, general_status, status_message):
|
|
|
|
if general_status == 'provider-enabled':
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
self.open_gps_access_popup()
|
|
|
|
|
|
|
|
def open_gps_access_popup(self):
|
|
|
|
dialog = MDDialog(title="GPS Error", text="You need to enable GPS access for the app to function properly")
|
|
|
|
dialog.size_hint = [.8, .8]
|
|
|
|
dialog.pos_hint = {'center_x': .5, 'center_y': .5}
|
|
|
|
dialog.open()
|
|
|
|
|