panScrollingMode property
The scrolling mode the user is allowed to use to interact with the map.
MLNPanScrollingModeHorizontal only allows the user to scroll horizontally on the map,
restricting a user's ability to scroll vertically.
MLNPanScrollingModeVertical only allows the user to scroll vertically on the map,
restricting a user's ability to scroll horizontally.
MLNPanScrollingMode/MLNPanScrollingModeDefault allows the user to scroll both horizontally and
vertically on the map.
By default, this property is set to MLNPanScrollingMode/MLNPanScrollingModeDefault.
Implementation
MLNPanScrollingMode get panScrollingMode {
final _ret = _objc_msgSend_1vb5jwj(this.ref.pointer, _sel_panScrollingMode);
return MLNPanScrollingMode.fromValue(_ret);
}
The scrolling mode the user is allowed to use to interact with the map.
MLNPanScrollingModeHorizontal only allows the user to scroll horizontally on the map,
restricting a user's ability to scroll vertically.
MLNPanScrollingModeVertical only allows the user to scroll vertically on the map,
restricting a user's ability to scroll horizontally.
MLNPanScrollingMode/MLNPanScrollingModeDefault allows the user to scroll both horizontally and
vertically on the map.
By default, this property is set to MLNPanScrollingMode/MLNPanScrollingModeDefault.
Implementation
set panScrollingMode(MLNPanScrollingMode value) {
_objc_msgSend_k7jknj(this.ref.pointer, _sel_setPanScrollingMode_, value.value);
}