Difference between revisions of "Geolocation"
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Supported platforms:''' android | + | '''<translate>Supported platforms</translate>:''' [[File:Platform android]][[File:Platform ios]]<br/> |
− | '''Available since:''' Gideros 2012.8<br/> | + | '''<translate>Available since</translate>:''' Gideros 2012.8<br/> |
+ | '''<translate>Inherits from</translate>:''' [[Special:MyLanguage/Object|Object]]<br/> | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate><br /> | <translate><br /> | ||
− | The | + | The `Geolocation` class is used to configure the parameters and dispatching of location and heading related events.<br /> |
<br /></translate> | <br /></translate> | ||
=== <translate>Examples</translate> === | === <translate>Examples</translate> === |
Revision as of 09:27, 24 August 2018
Supported platforms: File:Platform androidFile:Platform ios
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
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 |