LocationAccuracy enum

Represent the possible location accuracy values.

可能な位置精度の値を表します。

Inheritance

Constructors

LocationAccuracy()
const

Values

lowest → const LocationAccuracy

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

iOSでは3000m、Androidでは500m以内の距離で位置が正確です。

low → const LocationAccuracy

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

iOSでは1000m、Androidでは500m以内の距離で位置が正確です。

medium → const LocationAccuracy

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

iOSでは100m、Androidでは100mから500mの距離で位置が正確です。

high → const LocationAccuracy

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

iOSでは10m、Androidでは0mから100mの距離で位置が正確です。

best → const LocationAccuracy

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

iOSでは~0m、Androidでは0mから100mの距離で位置が正確です。

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

iOSではナビゲーション用に位置精度が最適化され、AndroidではLocationAccuracy.bestと一致します。

reduced → const LocationAccuracy

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

iOS 14+デバイスでは位置精度が低下し、iOS 13以下およびその他のすべてのプラットフォームではLocationAccuracy.lowestと一致します。

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<LocationAccuracy>
A constant List of the values in this enum, in order of their declaration.