OsmAnd/DataExtractionOSM/src/net/osmand/router/RouteSegmentResult.java

13 lines
285 B
Java
Raw Normal View History

2011-07-03 15:08:34 +02:00
package net.osmand.router;
import net.osmand.binary.BinaryMapDataObject;
import net.osmand.osm.LatLon;
public class RouteSegmentResult {
public LatLon startPoint;
public LatLon endPoint;
public BinaryMapDataObject object;
public int startPointIndex;
public int endPointIndex;
}