scrollEnabled property

bool get scrollEnabled

A Boolean value that determines whether the user may scroll around the map, changing the center coordinate.

When this property is set to YES, the default, the user may scroll the map by dragging or swiping with one finger.

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 location programmatically.

Implementation

bool get scrollEnabled {
  return _objc_msgSend_91o635(this.ref.pointer, _sel_isScrollEnabled);

}
set scrollEnabled (bool value)

A Boolean value that determines whether the user may scroll around the map, changing the center coordinate.

When this property is set to YES, the default, the user may scroll the map by dragging or swiping with one finger.

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 location programmatically.

Implementation

set scrollEnabled(bool value) {
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setScrollEnabled_, value);

}