Package com.mapfactor.sdk.routing
Interface RoutePointParams
- All Known Subinterfaces:
RoutePoint
public interface RoutePointParams
Route point parameters
- Since:
- 4.5
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
Routing point types -
Method Summary
Modifier and TypeMethodDescriptionstatic RoutePointParams
create
(RoutePointParams.RoutePointType routePointType, Coordinate coordinate, String name) Create and initialize RoutePointParams instanceGet Route point coordinategetName()
Get Route point namegetType()
Get Route point type
-
Method Details
-
create
@NonNull static RoutePointParams create(@NonNull RoutePointParams.RoutePointType routePointType, @NonNull Coordinate coordinate, @Nullable String name) Create and initialize RoutePointParams instance- Parameters:
routePointType
- route point typecoordinate
- route point coordinatename
- route point name- Returns:
- created RoutePointParams instance
- Since:
- 4.5
-
getName
Get Route point name- Returns:
- route point name
- Since:
- 1.0
-
getType
Get Route point type- Returns:
- route point type
- Since:
- 1.0
-
getCoordinate
Get Route point coordinate- Returns:
- route point coordinate
- Since:
- 1.0
-