zoomEnabled property

bool get zoomEnabled

A Boolean value that determines whether the user may zoom the map in and out, changing the zoom level.

When this property is set to YES, the default, the user may zoom the map in and out by pinching two fingers or by double tapping, holding, and moving the finger up and down.

This property controls only user interactions with the map. If you set the value of this property to NO, you may still change the map zoom programmatically.

Implementation

bool get zoomEnabled {
  return _objc_msgSend_91o635(this.ref.pointer, _sel_isZoomEnabled);

}
set zoomEnabled (bool value)

A Boolean value that determines whether the user may zoom the map in and out, changing the zoom level.

When this property is set to YES, the default, the user may zoom the map in and out by pinching two fingers or by double tapping, holding, and moving the finger up and down.

This property controls only user interactions with the map. If you set the value of this property to NO, you may still change the map zoom programmatically.

Implementation

set zoomEnabled(bool value) {
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setZoomEnabled_, value);

}