public MvxGeoLocation() { Coordinates = new MvxCoordinates(); }
private MvxGeoLocation ConvertToMvxGeoLocation(GpsData gpsData) { var coordinates = new MvxCoordinates { Latitude = gpsData.Latitude, Longitude = gpsData.Longitude, Speed = ComputeSpeed(), Heading = ComputeHeading() }; return new MvxGeoLocation {Coordinates = coordinates}; }