Location.SpeedAccuracyMetersPerSecond 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 speed accuracy in meters per second of this location at the 68th percentile confidence level. -or- Set the speed accuracy of this location in meters per second.
public virtual float SpeedAccuracyMetersPerSecond { [Android.Runtime.Register("getSpeedAccuracyMetersPerSecond", "()F", "GetGetSpeedAccuracyMetersPerSecondHandler", ApiSince=26)] get; [Android.Runtime.Register("setSpeedAccuracyMetersPerSecond", "(F)V", "GetSetSpeedAccuracyMetersPerSecond_FHandler", ApiSince=26)] set; }
[<get: Android.Runtime.Register("getSpeedAccuracyMetersPerSecond", "()F", "GetGetSpeedAccuracyMetersPerSecondHandler", ApiSince=26)>]
[<set: Android.Runtime.Register("setSpeedAccuracyMetersPerSecond", "(F)V", "GetSetSpeedAccuracyMetersPerSecond_FHandler", ApiSince=26)>]
member this.SpeedAccuracyMetersPerSecond : single with get, set
Property Value
vertical accuracy of this location
- Attributes
Remarks
Property getter documentation:
Returns the estimated speed accuracy in meters per second of this location at the 68th percentile confidence level. This means that there is 68% chance that the true speed at the time of this location falls within #getSpeed()
()} +/- this uncertainty.
This is only valid if #hasSpeedAccuracy()
is true.
Java documentation for android.location.Location.getSpeedAccuracyMetersPerSecond()
.
Property setter documentation:
Set the speed accuracy of this location in meters per second.
Java documentation for android.location.Location.setSpeedAccuracyMetersPerSecond(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.