Replies: 1 comment
-
|
It is unclear if this is a discussion or an issue report. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using the below configuration:
BackgroundGeolocation.configure({
locationProvider: BackgroundGeolocation.DISTANCE_FILTER_PROVIDER,
desiredAccuracy: BackgroundGeolocation.HIGH_ACCURACY,
stopOnTerminate:false,
stationaryRadius: 2,
distanceFilter: 5,
notificationTitle: 'Background Tracking',
notificationText: 'getting your current location',
debug: true,
interval: 5000,
fastestInterval: 5000,
activitiesInterval: 5000,
startForeground: true,
url:'http://myserver',
postTemplate: {
Latitude: '@latitude',
Longitude: '@longitude',
Provider: '@Provider',
Accuracy: '@accuracy'
}
});
The expected behavior:
Necessary:
1-The plugin should always send data in foreground, background and on terminate.
2- It should update/send user's location after every 5000-milli seconds (desired), in evert state (FG, BG, Terminate).
Additional:
3- It should update/send user's location after an exit from stationery state.
4- The plugin service should start and send data when a user moves 2-meters beyond stationary radius.
Additionally, what are the minimum values we can set for following:
1-stationaryRadius.
2-distanceFilter.
3-fastestInterval.
4-interval.
Beta Was this translation helpful? Give feedback.
All reactions