Hello,
I have the following code:
def currentlocation_tapped(sender):
location.start_updates()
currentlocation = location.get_location()
CURRENTCOORDINATES = sender.superview['currentcoordinates']
CURRENTCOORDINATES.text = "Current Coordinates : " + str(currentlocation)
location.stop_updates()
When I try to run this to update my textview text it returns none. I have to go manually to the settings to turn on location services for the app when testing and still I receive "None" as a returned string.
Is there an error with how I am naming variables? Has anyone used this function successfully, I have seen others remarking that this function has not worked for them while the other ones in the module have.
Thank you!