abstractGeometryImageUid property

int get abstractGeometryImageUid

Unique identifier for the abstract geometry image.

The UID can be used to determine whether the image changed since the last update. Compare this value to the previously-seen UID and only reload the UI image when it differs to save rendering work during navigation.

Returns

  • int: Unique identifier for the abstract geometry image or -1 if the UID is not available.

Also see:

Implementation

int get abstractGeometryImageUid {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'TurnDetails',
    'getAbstractGeometryImageUid',
  );

  return resultString['result'];
}