Difference between revisions of "Geolocation"
Line 2: | Line 2: | ||
'''Supported platforms:''' android, ios<br/> | '''Supported platforms:''' android, ios<br/> | ||
'''Available since:''' Gideros 2012.8<br/> | '''Available since:''' Gideros 2012.8<br/> | ||
− | === Description === | + | === <translate>Description</translate> === |
<translate><br /> | <translate><br /> | ||
The [[Special:MyLanguage/Geolocation|Geolocation]] class is used to configure the parameters and dispatching of location and heading related events.<br /> | The [[Special:MyLanguage/Geolocation|Geolocation]] class is used to configure the parameters and dispatching of location and heading related events.<br /> | ||
<br /></translate> | <br /></translate> | ||
− | === Examples === | + | === <translate>Examples</translate> === |
'''Example'''<br/> | '''Example'''<br/> | ||
<source lang="lua">geolocation = Geolocation.new() | <source lang="lua">geolocation = Geolocation.new() | ||
Line 23: | Line 23: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Methods === | + | === <translate>Methods</translate> === |
[[Special:MyLanguage/Geolocation.getAccuracy|Geolocation.getAccuracy]] ''<translate>Geolocation - returns the previously set desired accuracy</translate>''<br/> | [[Special:MyLanguage/Geolocation.getAccuracy|Geolocation.getAccuracy]] ''<translate>Geolocation - returns the previously set desired accuracy</translate>''<br/> | ||
[[Special:MyLanguage/Geolocation.getThreshold|Geolocation.getThreshold]] ''<translate>Geolocation - returns the previously set minimum distance threshold</translate>''<br/> | [[Special:MyLanguage/Geolocation.getThreshold|Geolocation.getThreshold]] ''<translate>Geolocation - returns the previously set minimum distance threshold</translate>''<br/> | ||
Line 38: | Line 38: | ||
[[Special:MyLanguage/Geolocation:stopUpdatingLocation|Geolocation:stopUpdatingLocation]] ''<translate>Geolocation - stops the generation of updates that report the current location</translate>''<br/> | [[Special:MyLanguage/Geolocation:stopUpdatingLocation|Geolocation:stopUpdatingLocation]] ''<translate>Geolocation - stops the generation of updates that report the current location</translate>''<br/> | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Events === | + | === <translate>Events</translate> === |
[[Special:MyLanguage/Event.ERROR|Event.ERROR]]<br/> | [[Special:MyLanguage/Event.ERROR|Event.ERROR]]<br/> | ||
[[Special:MyLanguage/Event.HEADING_UPDATE|Event.HEADING_UPDATE]]<br/> | [[Special:MyLanguage/Event.HEADING_UPDATE|Event.HEADING_UPDATE]]<br/> | ||
[[Special:MyLanguage/Event.LOCATION_UPDATE|Event.LOCATION_UPDATE]]<br/> | [[Special:MyLanguage/Event.LOCATION_UPDATE|Event.LOCATION_UPDATE]]<br/> | ||
− | === Constants === | + | === <translate>Constants</translate> === |
|} | |} |
Revision as of 07:29, 24 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 |