public void Initialize() { webservice = new OneBusAwayWebservice(); }
public double DistanceFromClosestSupportedRegion(GeoCoordinate location) { return(OneBusAwayWebservice.ClosestRegion(location).DistanceFrom(location.Latitude, location.Longitude)); }
public bool AreLocationsEquivalent(GeoCoordinate location1, GeoCoordinate location2) { return(OneBusAwayWebservice.GetRoundedLocation(location1) == OneBusAwayWebservice.GetRoundedLocation(location2)); }