nextCountryCodeISO property
ISO 3166-1 alpha-3 country code for the next road segment.
Returns the three-letter country code for the road segment after the next turn or maneuver. Returns an empty string if country information is unavailable.
Returns
- (String) ISO 3166-1 alpha-3 country code, or empty string if not available.
See also:
- currentCountryCodeISO - Country code for the current road segment.
- MapDetails - Querry details about a map by country code.
Implementation
String get nextCountryCodeISO {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'getNextCountryCodeISO',
);
return resultString['result'];
}