nextCountryCodeISO property

String get nextCountryCodeISO

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:

Implementation

String get nextCountryCodeISO {
  final OperationResult resultString = objectMethod(
    pointerId,
    'NavigationInstruction',
    'getNextCountryCodeISO',
  );

  return resultString['result'];
}