| | 1 | | namespace Itinero.Instructions.Types; |
| | 2 | |
|
| | 3 | | public class FollowAlongInstruction : BaseInstruction |
| | 4 | | { |
| | 5 | | /// <summary> |
| | 6 | | /// The 'follow along'-instruction means (more or less) 'continue along this road'. |
| | 7 | | /// It is issued if no single bend is more then 35° (incl) at a time |
| | 8 | | /// </summary> |
| | 9 | | /// <param name="route"></param> |
| | 10 | | /// <param name="shapeIndex"></param> |
| | 11 | | /// <param name="shapeIndexEnd"></param> |
| | 12 | | /// <param name="turnDegrees"></param> |
| 2 | 13 | | public FollowAlongInstruction(IndexedRoute route, int shapeIndex, int shapeIndexEnd, int turnDegrees) : base( |
| 2 | 14 | | route, shapeIndex, shapeIndexEnd, turnDegrees) |
| 4 | 15 | | { } |
| | 16 | | } |