distance property

double distance

The geodetic distance from the two input points, in the linear unit used as a parameter when calling GeometryEngine.distanceGeodetic.

Implementation

double get distance {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeodeticDistanceResult_getDistance(
      _handle,
      errorHandler,
    );
  });
}