imageUid property
Retrieves the unique identifier for the landmark's primary image.
Returns
- int: The image UID.
See also:
- img for a higher-level image wrapper.
Implementation
int get imageUid {
final OperationResult resultString = objectMethod(
pointerId,
'Landmark',
'getImageUid',
);
return resultString['result'];
}