added turn restrictions

This commit is contained in:
Arndt 2016-11-20 22:31:10 +01:00
parent 561b60c5cb
commit e48cbd49cb
18 changed files with 383 additions and 32 deletions

View file

@ -0,0 +1,26 @@
/**
* Container for a turn restriction
*
* @author ab
*/
package btools.mapaccess;
public final class TurnRestriction
{
public boolean isPositive;
public int fromLon;
public int fromLat;
public int toLon;
public int toLat;
public TurnRestriction next;
@Override
public String toString()
{
return "pos=" + isPositive + " fromLon=" + fromLon + " fromLat=" + fromLat + " toLon=" + toLon + " toLat=" + toLat;
}
}