Class is used for evaluating RoutePath from point to point. More...
Public Member Functions | |
| abstract RoutePath | makeRoute (LocationPoint from, LocationPoint to) |
| Method is used to build a route between points about evaluated RoutePath from your position to target point. | |
| abstract ArrayList< RoutePath > | makeRoutes (LocationPoint from, ArrayList< LocationPoint > to) |
| Method is used to build a route between the starting point and several destination points. | |
| abstract void | setTarget (LocationPoint target) |
| Method is used to set target point in your location. Through RouteListener you will be notified about new paths to target point. | |
| abstract void | addTarget (LocationPoint target) |
| Method is used to add target point in your location. Through RouteListener you will be notified about new paths to target point. | |
| abstract void | cancelTarget () |
| Method is used for removing current target points to where the routes were built. | |
| abstract void | clearTargets () |
| Method is used for removing all target points to where the routes were built. | |
| abstract void | setGraphTag (String tag) |
| Method is used to select graph tag (Default: "default"). | |
| abstract String | getGraphTag () |
| Method is used to get current graph tag (Default: "default"). | |
| abstract ArrayList< String > | getGraphTags () |
| Method is used to get all graph tags,. | |
| abstract void | addRouteListener (RouteListener listener) |
| Method is used to add RouteListener class element which will notify about evaluated route path from your position to target point. | |
| abstract void | removeRouteListener (RouteListener listener) |
| Method is used for removing previously added RouteListener class element. | |
Class is used for evaluating RoutePath from point to point.
Referenced from NavigineSdk.
Definition at line 17 of file RouteManager.java.
|
abstract |
Method is used to add RouteListener class element which will notify about evaluated route path from your position to target point.
| listener | Сorresponding RouteListener class. |
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to add target point in your location. Through RouteListener you will be notified about new paths to target point.
| target | finish LocationPoint. |
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used for removing current target points to where the routes were built.
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used for removing all target points to where the routes were built.
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to get current graph tag (Default: "default").
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to get all graph tags,.
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to build a route between points about evaluated RoutePath from your position to target point.
| from | starting LocationPoint. |
| to | destination LocationPoint. |
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to build a route between the starting point and several destination points.
| from | starting LocationPoint. |
| to | destination list of LocationPoints. |
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used for removing previously added RouteListener class element.
| listener | Сorresponding RouteListener class to remove. |
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to select graph tag (Default: "default").
Java code snippet:
Kotlin code snippet:
|
abstract |
Method is used to set target point in your location. Through RouteListener you will be notified about new paths to target point.
| target | finish LocationPoint. |
Java code snippet:
Kotlin code snippet: