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-1if the UID is not available.
Also see:
- abstractGeometryImg — Renderable image wrapper for the abstract geometry.
- getAbstractGeometryImage — obtain raw image bytes with custom
Implementation
int get abstractGeometryImageUid {
final OperationResult resultString = objectMethod(
_pointerId,
'TurnDetails',
'getAbstractGeometryImageUid',
);
return resultString['result'];
}