Package com.navmii.sdk.routenavigation
Interface WaypointsPassedListener
-
public interface WaypointsPassedListener
An interface allowing to listen when user passes one or multiple waypoints while navigating on a route.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onWaypointsPassed(int passedWaypointCount, java.util.ArrayList<RoutePlanPoint> remainingWaypoints)
The method is called once user passes one or multiple waypoints.
-
-
-
Method Detail
-
onWaypointsPassed
void onWaypointsPassed(int passedWaypointCount, java.util.ArrayList<RoutePlanPoint> remainingWaypoints)
The method is called once user passes one or multiple waypoints.- Parameters:
passedWaypointCount
- The number of passed waypoints;remainingWaypoints
- Remaining waypoints.
-
-