minScore property

double minScore

Min score.

Determines addresses the minimal score value (score threshold) [0..100]. By default used 0 and get real value from locator properties.

Implementation

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

Implementation

set minScore(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeocodeParameters_setMinScore(
        _handle, value, errorHandler);
  });
}