setMinMaxZoomPreference method

  1. @override
void setMinMaxZoomPreference(
  1. num? min,
  2. num? max
)
override

Implementation

@override
void setMinMaxZoomPreference(num? min, num? max) {
  // FIX: why is called indefinitely? (map_ui page)
  _map.setMinZoom(min);
  _map.setMaxZoom(max);
}