Exemple #1
0
 public double UpdateDistanceToNextWaypoint(GeoLocation location, TollPoint point)
 {
     return(LocationChecker.DistanceBetweenGeoLocations(location, point.Location));
 }
Exemple #2
0
 public void SetExit(TollPoint point)
 {
     Exit = geoDataService.GetTollWayPoint(point.TollWaypointId);
 }
Exemple #3
0
 public void SetIgnoredChoiceTollPoint(TollPoint point)
 {
     IgnoredChoiceTollPoint = point;
 }
Exemple #4
0
 public void SetEntrance(TollPoint point)
 {
     Entrance  = geoDataService.GetTollWayPoint(point.TollWaypointId);
     TollRoad  = geoDataService.GetTollRoad(Entrance.TollRoadId);
     TollPoint = geoDataService.GetTollPoint(point.Id);
 }