Class ARPath
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class ARPath implements Parcelable
Path from a source location to a destination location (output model for pathfinding) Encapsulates several types of nodes and analytics information
-
-
Field Summary
Fields Modifier and Type Field Description public final static Parcelable.Creator<ARPath>
CREATOR
private final List<ARPathNode>
nodes
private final Double
userToPathDirection
private final LocationAware
destination
private final List<PathDirection>
directions
-
Method Summary
Modifier and Type Method Description final List<ARPathNode>
getNodes()
final Double
getUserToPathDirection()
final LocationAware
getDestination()
final List<PathDirection>
getDirections()
Getter for path directions Unit
writeToParcel(Parcel parcel, Integer flags)
Integer
describeContents()
-
-
Method Detail
-
getNodes
final List<ARPathNode> getNodes()
-
getUserToPathDirection
final Double getUserToPathDirection()
-
getDestination
final LocationAware getDestination()
-
getDirections
final List<PathDirection> getDirections()
Getter for path directions
- Returns:
List of path directions
-
writeToParcel
Unit writeToParcel(Parcel parcel, Integer flags)
-
describeContents
Integer describeContents()
-
-
-
-