brouter/brouter-codec/src/main/java/btools/codec/WaypointMatcher.java
2018-04-02 19:19:52 +02:00

13 lines
316 B
Java

package btools.codec;
/**
* a waypoint matcher gets way geometries
* from the decoder to find the closest
* matches to the waypoints
*/
public interface WaypointMatcher
{
boolean start( int ilonStart, int ilatStart, int ilonTarget, int ilatTarget );
void transferNode( int ilon, int ilat );
void end();
}