distance property

int get distance

Get distance to matched position in meters.

Returns

Distance in meters

Implementation

int get distance {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MarkerMatch',
    'getDistance',
  );

  return resultString['result'];
}