Time for action – trying out native location tracking
Later in this chapter, we will add in a feature to allow the app user to add a set of favorite locations. For the moment, we'll just try out the basic functions. Location doesn't work in the simulators; you'll have to try this on a real device:
Use the test-rig stack from the preceding steps and add a
Get Location
button and alocation
field. Make sure that thelocation
field is as wide as the card window; it will show three long numbers.Set the script of the button to the following:
on mouseUp mobileStartTrackingSensor "location", true put mobileSensorReading("location", false) into field "location" mobileStopTrackingSensor "location" end mouseUp
The
true
value in the second line is the one that defines a loosely value saying that we don't need the precision of GPS. Thefalse
value in the third line says that we don't need detailed information to be returned.Go to Standalone Application Settings and choose your target device as iOS...