Difference between revisions of "Geolocation"
Line 3: | Line 3: | ||
'''Available since:''' Gideros 2012.8<br/> | '''Available since:''' Gideros 2012.8<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
− | The | + | The [[[Geolocation]]] class is used to configure the parameters and dispatching of location and heading related events.<br /> |
− | <br /> | + | <br /></translate> |
=== Examples === | === Examples === | ||
'''Example'''<br/> | '''Example'''<br/> | ||
− | <source lang="lua">geolocation = Geolocation.new() | + | <source lang="lua">geolocation = Geolocation.new() |
− | + | ||
− | local function onLocationUpdate(event) | + | local function onLocationUpdate(event) |
− | print("location: ", event.latitude, event.longitude, event.altitude) | + | print("location: ", event.latitude, event.longitude, event.altitude) |
− | end | + | end |
− | + | ||
− | local function onHeadingUpdate(event) | + | local function onHeadingUpdate(event) |
− | print("heading: ", event.magneticHeading, event.trueHeading) | + | print("heading: ", event.magneticHeading, event.trueHeading) |
− | end | + | end |
− | + | ||
− | geolocation:addEventListener(Event.LOCATION_UPDATE, onLocationUpdate) | + | geolocation:addEventListener(Event.LOCATION_UPDATE, onLocationUpdate) |
− | geolocation:addEventListener(Event.HEADING_UPDATE, onHeadingUpdate) | + | geolocation:addEventListener(Event.HEADING_UPDATE, onHeadingUpdate) |
geolocation:start()</source> | geolocation:start()</source> | ||
{|- | {|- |
Revision as of 13:38, 23 August 2018
Supported platforms: android, ios
Available since: Gideros 2012.8
Description
The [[[Geolocation]]] class is used to configure the parameters and dispatching of location and heading related events.
Examples
Example
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 - Geolocation - returns the previously set desired accuracy |
EventsEvent.ERROR Constants |