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

    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()  

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

  • Method Details

    • 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 class java.lang.Object