id property

int get id

Returns the landmark's unique identifier within its landmark store.

If the landmark is not associated with a store this getter returns -1.

Returns

  • int: Landmark ID, or -1 when not assigned to a store.

Implementation

int get id {
  final OperationResult resultString = objectMethod(
    pointerId,
    'Landmark',
    'getLandmarkId',
  );

  return resultString['result'];
}