distance property

int get distance

Distance from the query point to the matched position, in meters.

Returns

  • Distance measured in meters as an integer.

Implementation

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

  return resultString['result'];
}