Criteria.BearingAccuracy Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a constant indicating the desired bearing accuracy. -or- Indicates the desired bearing accuracy.
public virtual Android.Locations.Accuracy BearingAccuracy { [Android.Runtime.Register("getBearingAccuracy", "()I", "GetGetBearingAccuracyHandler")] get; [Android.Runtime.Register("setBearingAccuracy", "(I)V", "GetSetBearingAccuracy_IHandler")] set; }
[<get: Android.Runtime.Register("getBearingAccuracy", "()I", "GetGetBearingAccuracyHandler")>]
[<set: Android.Runtime.Register("setBearingAccuracy", "(I)V", "GetSetBearingAccuracy_IHandler")>]
member this.BearingAccuracy : Android.Locations.Accuracy with get, set
Property Value
- Attributes
Exceptions
if accuracy is not one of the supported constants
Remarks
Property getter documentation:
Returns a constant indicating the desired bearing accuracy.
Java documentation for android.location.Criteria.getBearingAccuracy()
.
Property setter documentation:
Indicates the desired bearing accuracy. Accuracy may be #ACCURACY_LOW
, #ACCURACY_MEDIUM
, #ACCURACY_HIGH
, or #NO_REQUIREMENT
. More accurate location may consume more power and may take longer.
Java documentation for android.location.Criteria.setBearingAccuracy(int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.