Location
Required Phonegap plugins
cordova-plugin-geolocation
API Documentation
Method Summary
getCurrentPosition
Returns the device's current position to the successCallback callback with a Position object as the parameter. If there is an error, the errorCallback function is passed a PositionError object.
Params
Type | Name | Summary | Required |
---|---|---|---|
Function | successCallback | on success callback | Optional |
Function | errorCallback | on error callback | Optional |
Object | options | Options {maximumAge: Number, timeout: Number, enableHighAccuracy: Boolean} | Optional |
watchPosition
Add a watcher to keep track of the GPS position. As the device moves the watcher will send this information back to the successCallback callback with a Position object as the parameter. If there is an error, the errorCallback function is passed a PositionError object.
Params
Type | Name | Summary | Required |
---|---|---|---|
Function | onWatchSetCallback | on success callback (gets a watcherID) | Optional |
Function | successCallback | on success callback | Optional |
Function | errorCallback | on error callback | Optional |
Object | options | Options {maximumAge: Number, timeout: Number, enableHighAccuracy: Boolean} | Optional |
clearWatch
Remove an existing watcher which will disable tracking of location.
Params
Type | Name | Summary | Required |
---|---|---|---|
Number | watchId | watchID to remove | Optional |
Example Usage
Last updated