Using the Human Activity Monitor ‘GPS’; how do I get the GPS accuracy?
tizen.humanactivitymonitor.start('GPS', data => {
for (const gpsData of data.gpsInfo) {
var speed = gpsData.speed;
// how do I get this?!
var accuracy = gpsData.accuracy;
// LOW, MEDIUM, HIGH
}
}
}, error => {
console.log('GpsService :: collectGpsData :: error: ' + JSON.stringify(error));
}, {callbackInterval: 1000, sampleInterval: 1000});
Tried reading this, but nothing there looks promising:
https://docs.tizen.org/application/web/api/2.3.2/device_api/wearable/tizen/humanactivitymonitor.html
To draw a comparison with Android see Location#getAccuracy
https://developer.android.com/reference/android/location/Location
Cheers