Difference between revisions of "Geolocation"
Tag: Undo  | 
				|||
| Line 55: | Line 55: | ||
|}  | |}  | ||
| − | {{Geolocation}}  | + | ----  | 
| + | {{Special:PrefixIndex/Geolocation}}  | ||
| + | <br/>  | ||
| + | |||
| + | {{Special:PrefixIndex/Event.ERROR}}  | ||
| + | {{Special:PrefixIndex/Event.HEADING_UPDATE}}  | ||
| + | {{Special:PrefixIndex/Event.LOCATION_UPDATE}}  | ||
| + | <br/>  | ||
Revision as of 11:15, 4 December 2019
Supported platforms: ![]()
![]()
![]()
Available since: Gideros 2012.8
Inherits from: Object
Description
The Geolocation class is used to configure the parameters and dispatching of location and heading related events.
Examples
geolocation = Geolocation.new()
local function onLocationUpdate(event)
	print("location: ", event.latitude, event.longitude, event.altitude)
end
local function onHeadingUpdate(event)
	print("heading: ", event.magneticHeading, event.trueHeading)
end
geolocation:addEventListener(Event.LOCATION_UPDATE, onLocationUpdate)
geolocation:addEventListener(Event.HEADING_UPDATE, onHeadingUpdate)
geolocation:start()
MethodsGeolocation.getAccuracy returns the previously set desired accuracy  | 
EventsEvent.ERROR Constants | 
- Geolocation
 - Geolocation.getAccuracy
 - Geolocation.getThreshold
 - Geolocation.isAvailable
 - Geolocation.isHeadingAvailable
 - Geolocation.new
 - Geolocation.setAccuracy
 - Geolocation.setThreshold
 - Geolocation:start
 - Geolocation:startUpdatingHeading
 - Geolocation:startUpdatingLocation
 - Geolocation:stop
 - Geolocation:stopUpdatingHeading
 - Geolocation:stopUpdatingLocation