Location.BearingAccuracyDegrees 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 the estimated bearing accuracy in degrees of this location at the 68th percentile confidence level. -or- Set the bearing accuracy in degrees of this location.
public virtual float BearingAccuracyDegrees { [Android.Runtime.Register("getBearingAccuracyDegrees", "()F", "GetGetBearingAccuracyDegreesHandler", ApiSince=26)] get; [Android.Runtime.Register("setBearingAccuracyDegrees", "(F)V", "GetSetBearingAccuracyDegrees_FHandler", ApiSince=26)] set; }
[<get: Android.Runtime.Register("getBearingAccuracyDegrees", "()F", "GetGetBearingAccuracyDegreesHandler", ApiSince=26)>]
[<set: Android.Runtime.Register("setBearingAccuracyDegrees", "(F)V", "GetSetBearingAccuracyDegrees_FHandler", ApiSince=26)>]
member this.BearingAccuracyDegrees : single with get, set
Property Value
bearing accuracy in degrees of this location
- Attributes
Remarks
Property getter documentation:
Returns the estimated bearing accuracy in degrees of this location at the 68th percentile confidence level. This means that there is 68% chance that the true bearing at the time of this location falls within #getBearing()
()} +/- this uncertainty.
This is only valid if #hasBearingAccuracy()
()} is true.
Java documentation for android.location.Location.getBearingAccuracyDegrees()
.
Property setter documentation:
Set the bearing accuracy in degrees of this location.
Java documentation for android.location.Location.setBearingAccuracyDegrees(float)
.
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.