Skip to main content

GeolocatorPositionAccuracy

Represent the possible location accuracy values.

Inherits: enum.Enum

Properties

  • BEST - Location is accurate within a distance of ~0m on iOS and between 0m and 100m on Android.
  • BEST_FOR_NAVIGATION - Location accuracy is optimized for navigation on iOS and matches the GeolocatorPositionAccuracy.BEST on Android.
  • HIGH - Location is accurate within a distance of 10m on iOS and between 0m and 100m on Android.
  • LOW - Location is accurate within a distance of 1000m on iOS and 500m on Android.
  • LOWEST - Location is accurate within a distance of 3000m on iOS and 500m on Android.
  • MEDIUM - Location is accurate within a distance of 100m on iOS and between 100m and 500m on Android.
  • REDUCED - Location accuracy is reduced for iOS 14+ devices.

Properties

BESTclass-attributeinstance-attribute

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_NAVIGATIONclass-attributeinstance-attribute

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

On Android, corresponds to PRIORITY_HIGH_ACCURACY.

HIGHclass-attributeinstance-attribute

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

On Android, corresponds to PRIORITY_HIGH_ACCURACY.

LOWclass-attributeinstance-attribute

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

On Android, corresponds to PRIORITY_LOW_POWER.

LOWESTclass-attributeinstance-attribute

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

On Android, corresponds to PRIORITY_PASSIVE.

MEDIUMclass-attributeinstance-attribute

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.

REDUCEDclass-attributeinstance-attribute

Location accuracy is reduced for iOS 14+ devices. Matches GeolocatorPositionAccuracy.LOWEST on iOS 13 and below and all other platforms.

On Android, corresponds to PRIORITY_PASSIVE.