-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class LaneGuidance implements Parcelable
This data structure provider lane guidance information for the particular step.
-
-
Field Summary
Fields Modifier and Type Field Description private final Integer
legIndex
private final Integer
stepIndex
private final List<LaneGuidanceSection>
guidanceInfoList
-
Constructor Summary
Constructors Constructor Description LaneGuidance(Integer legIndex, Integer stepIndex, List<LaneGuidanceSection> guidanceInfoList)
-
Method Summary
Modifier and Type Method Description final Integer
getLegIndex()
Zero based leg index relative to route final Integer
getStepIndex()
Zero based step index relative to leg final List<LaneGuidanceSection>
getGuidanceInfoList()
Lane guidance of current step. -
-
Constructor Detail
-
LaneGuidance
LaneGuidance(Integer legIndex, Integer stepIndex, List<LaneGuidanceSection> guidanceInfoList)
-
-
Method Detail
-
getLegIndex
final Integer getLegIndex()
Zero based leg index relative to route
-
getStepIndex
final Integer getStepIndex()
Zero based step index relative to leg
-
getGuidanceInfoList
final List<LaneGuidanceSection> getGuidanceInfoList()
Lane guidance of current step.
-
-
-
-