Skip to main content

GeolocatorPositionAccuracy

Represent the possible location accuracy values.

LOWEST = "lowest" LOW = "low" MEDIUM = "medium" HIGH = "high" BEST = "best" BEST_FOR_NAVIGATION = "bestForNavigation" REDUCED = "reduced"

GeolocatorPositionAccuracy enum has the following values:

LOWEST

Location is accurate within a distance of 3000m on iOS and 500m on Android.

On Android, corresponds to PRIORITY_PASSIVE.

LOW

Location is accurate within a distance of 1000m on iOS and 500m on Android.

On Android, corresponds to PRIORITY_LOW_POWER.

MEDIUM

Location is accurate within a distance of 100m on iOS and between 100m and 500m on Android.

On Android, corresponds to PRIORITY_BALANCED_POWER_ACCURACY.

HIGH

Location is accurate within a distance of 10m on iOS and between 0m and 100m on Android.

On Android, corresponds to PRIORITY_HIGH_ACCURACY.

BEST

Location is accurate within a distance of ~0m on iOS and between 0m and 100m on Android.

On Android, corresponds to PRIORITY_HIGH_ACCURACY.

BEST_FOR_NAVIGATION

Location accuracy is optimized for navigation on iOS and matches the BEST on Android.

On Android, corresponds to PRIORITY_HIGH_ACCURACY.

REDUCED

Location accuracy is reduced for iOS 14+ devices, matches the LOWEST on iOS 13 and below and all other platforms.

On Android, corresponds to PRIORITY_PASSIVE.