* @param distanceToStartPoint - the distance to the edge start point
* @return
*/
private EdgeLocationModel initializeEdgeLocation(EdgeModel edge, double distanceToStartPoint){
EdgeLocationModel edgeLocation = new EdgeLocationModel();
edgeLocation.addEdge(edge);
edgeLocation.setDistance(distanceToStartPoint);
return edgeLocation;
}
@Override