automatically ignore islands

This commit is contained in:
Arndt Brenschede 2018-04-02 19:19:52 +02:00
parent f2d04ef70a
commit 599a24f710
8 changed files with 203 additions and 23 deletions

View file

@ -7,7 +7,7 @@ package btools.codec;
*/
public interface WaypointMatcher
{
void startNode( int ilon, int ilat, byte[] wayTags );
boolean start( int ilonStart, int ilatStart, int ilonTarget, int ilatTarget );
void transferNode( int ilon, int ilat );
void endNode( int ilon, int ilat );
void end();
}