maxDistance property

double maxDistance

Distance specifying with location the area where candidates will be searched in meters.

Distance specifying with location the area where candidates will be searched [meters]. Supported value in a range between 1000 and 50000 meters, 1000 meters by default.

Implementation

double get maxDistance {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ReverseGeocodeParameters_getMaxDistance(
        _handle, errorHandler);
  });
}
void maxDistance=(double value)

Implementation

set maxDistance(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ReverseGeocodeParameters_setMaxDistance(
        _handle, value, errorHandler);
  });
}