Difference between revisions of "Geolocation"
(adjusted content) |
m (add some spacing between methods starting with . and :) |
||
Line 43: | Line 43: | ||
[[Special:MyLanguage/Geolocation.setThreshold|Geolocation.setThreshold]] ''<translate>sets the threshold</translate>''<br/> | [[Special:MyLanguage/Geolocation.setThreshold|Geolocation.setThreshold]] ''<translate>sets the threshold</translate>''<br/> | ||
<!-- GIDEROSMTD:Geolocation.setThreshold(threshold) sets the threshold --> | <!-- GIDEROSMTD:Geolocation.setThreshold(threshold) sets the threshold --> | ||
+ | |||
[[Special:MyLanguage/Geolocation:start|Geolocation:start]] ''<translate>starts the generation of updates that report the current location and heading</translate>''<br/> | [[Special:MyLanguage/Geolocation:start|Geolocation:start]] ''<translate>starts the generation of updates that report the current location and heading</translate>''<br/> | ||
<!-- GIDEROSMTD:Geolocation:start() starts the generation of updates that report the current location and heading --> | <!-- GIDEROSMTD:Geolocation:start() starts the generation of updates that report the current location and heading --> |
Revision as of 00:23, 5 January 2020
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 Geolocation:start starts the generation of updates that report the current location and heading |
EventsEvent.ERROR Constants |