maxResults property

int maxResults

Max results.

Determines the maximum count of candidates which should be returned. By default should be returned all found candidates.

Implementation

int get maxResults {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeocodeParameters_getMaxResults(
      _handle,
      errorHandler,
    );
  });
}
void maxResults=(int value)

Implementation

set maxResults(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GeocodeParameters_setMaxResults(
      _handle,
      value,
      errorHandler,
    );
  });
}