nextNextRoadInformation property
Road information two segments ahead.
Returns detailed information about the road after the next-next turn, including official road designations and shield types. Complements nextNextStreetName with additional metadata.
Returns
- (
List<RoadInfo>) Next-next road information list.
See also:
- currentRoadInformation - Current road information.
- nextRoadInformation - Road information one segment ahead.
Implementation
List<RoadInfo> get nextNextRoadInformation {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'getNextNextRoadInformation',
);
final int id = resultString['result'];
return RoadInfoList.init(id).toList();
}