id property

int get id

Get the landmark ID.

Returns

  • landmark id
  • GemError.general.code (-1) if it does not have an associated ID, i.e. the landmark doesn't belong to a landmark store.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}