maxResults property

int maxResults

Max locations.

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_ReverseGeocodeParameters_getMaxResults(
        _handle, errorHandler);
  });
}
void maxResults=(int value)

Implementation

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