Package com.navmii.sdk.routecalculation
Class ExternalRoutePoint
- java.lang.Object
-
- com.navmii.sdk.routecalculation.ExternalRoutePoint
-
public final class ExternalRoutePoint extends java.lang.Object
Class representing an external route point.
-
-
Constructor Summary
Constructors Constructor Description ExternalRoutePoint(MapCoordinates coordinates, float durationFromStartInSeconds, boolean isWaypoint)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MapCoordinates
getCoordinates()
The geo coordinates of a route point.float
getDurationFromStartInSeconds()
The duration from the route start point to the point, in seconds.boolean
getIsWaypoint()
Indicates whether the point is a waypoint of a route or a regular route point.java.lang.String
toString()
-
-
-
Constructor Detail
-
ExternalRoutePoint
public ExternalRoutePoint(MapCoordinates coordinates, float durationFromStartInSeconds, boolean isWaypoint)
-
-
Method Detail
-
getCoordinates
public MapCoordinates getCoordinates()
The geo coordinates of a route point.
-
getDurationFromStartInSeconds
public float getDurationFromStartInSeconds()
The duration from the route start point to the point, in seconds.
-
getIsWaypoint
public boolean getIsWaypoint()
Indicates whether the point is a waypoint of a route or a regular route point. Default value is 'false'.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-