Difference between revisions of "Geolocation"
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 10: | Line 10: | ||
=== <translate>Examples</translate> === | === <translate>Examples</translate> === | ||
− | < | + | <syntaxhighlight lang="lua"> |
geolocation = Geolocation.new() | geolocation = Geolocation.new() | ||
Revision as of 14:28, 13 July 2023
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
<syntaxhighlight lang="lua"> 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() </source>
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 |