What is the difference between
Geoposition.Coordinate.Speed.Value
and
Geoposition.Coordinate.Speed
?
Both seem to give me current speed but I'm wondering which one I should use. Thanks.
What is the difference between
Geoposition.Coordinate.Speed.Value
and
Geoposition.Coordinate.Speed
?
Both seem to give me current speed but I'm wondering which one I should use. Thanks.
Geoposition.Coordinate.Speed
is of the type having HasValu
e and Value
properties
Whereas Geoposition.Coordinate.Speed.Value
has just a double value type so you would need to store it accordingly and retrieve the values using properties needed.