All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openlr.map.PointAlongLine Maven / Gradle / Ivy

There is a newer version: 2.0-beta3
Show newest version
package org.openlr.map;

import org.locationtech.jts.geom.Point;

public interface PointAlongLine> {
    L getLine();
    double getPositiveOffset();
    double getNegativeOffset();
    boolean atStart();
    boolean atEnd();
    Point getGeometry();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy