BreakMinimumTime Property |
Namespace: Telogis.GeoBase
Break br1 = new Break(33.59142,-117.73433); br1.MinimumTime = new TimeSpan(0,10,0); Break br2 = new Break(33.59142,-117.73433); br2.AverageTime = new TimeSpan(0,5,0); br2.MinimumTime = new TimeSpan(0,10,0); Break br3 = new Break(33.59142,-117.73433); br3.AverageTime = new TimeSpan(0,20,0); br3.MinimumTime = new TimeSpan(0,10,0); // During route optimization the time spent at the stop for br1 is 10 mins. // During route optimization the time spent at the stop for br2 is 10 mins. // During route optimization the time spent at the stop for br3 is 20 mins.