brouter/brouter-codec/src/main/java/btools/codec/WaypointMatcher.java
2022-07-25 06:14:46 +02:00

15 lines
314 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();
}