Class DirectionsStep

java.lang.Object
ai.nextbillion.maps.model.DirectionsStep
All Implemented Interfaces:
java.io.Serializable

public class DirectionsStep
extends java.lang.Object
implements java.io.Serializable
See Also:
Serialized Form
  • Field Summary

    Fields 
    Modifier and Type Field Description
    LatLng endLocation
    The location of the last point of this step.
    java.lang.String geometry
    The path of this step.
    LatLng startLocation
    The location of the starting point of this step.
  • Constructor Summary

    Constructors 
    Constructor Description
    DirectionsStep()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • startLocation

      public LatLng startLocation
      The location of the starting point of this step.
    • endLocation

      public LatLng endLocation
      The location of the last point of this step.
    • geometry

      public java.lang.String geometry
      The path of this step.
  • Constructor Details