com.graphhopper.routing.ev.GetOffBike Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphhopper-core Show documentation
Show all versions of graphhopper-core Show documentation
GraphHopper is a fast and memory efficient Java road routing engine
working seamlessly with OpenStreetMap data.
package com.graphhopper.routing.ev;
public class GetOffBike {
public static final String KEY = "get_off_bike";
public static BooleanEncodedValue create() {
return new SimpleBooleanEncodedValue(KEY, true);
}
}