diff --git a/Route.java b/Route.java index c831cd3..bc05046 100644 --- a/Route.java +++ b/Route.java @@ -18,6 +18,7 @@ public class Route { //execute api call out to routing service to get route info updateCurrentLocation(); HelperFunctions apiCallToRouting = new HelperFunctions(); - double[][] tmpSeq = apiCallToRouting.routingAPI(currentLocation, currentDestination.getDestinationCoordinates()); + routeSequence = apiCallToRouting.routingAPI(currentLocation, currentDestination.getDestinationCoordinates()); + } }