Line data Source code
1 : /// Represent the possible location accuracy values. 2 14 : enum LocationAccuracy { 3 : /// Location is accurate within a distance of 3000m on iOS and 500m on Android 4 : lowest, 5 : 6 : /// Location is accurate within a distance of 1000m on iOS and 500m on Android 7 : low, 8 : 9 : /// Location is accurate within a distance of 100m on iOS and between 100m and 10 : /// 500m on Android 11 : medium, 12 : 13 : /// Location is accurate within a distance of 10m on iOS and between 0m and 14 : /// 100m on Android 15 : high, 16 : 17 : /// Location is accurate within a distance of ~0m on iOS and between 0m and 18 : /// 100m on Android 19 : best, 20 : 21 : /// Location accuracy is optimized for navigation on iOS and matches the 22 : /// [LocationAccuracy.best] on Android 23 : bestForNavigation 24 : }