maximumScreenBounds property

MLNCoordinateBounds get maximumScreenBounds

The maximum bounds of the map that can be shown on screen.

@param MLNCoordinateBounds the bounds to constrain the screen to.

Implementation

MLNCoordinateBounds get maximumScreenBounds {
  final _ptr = pkg_ffi.calloc<MLNCoordinateBounds>();
  objc.useMsgSendVariants ? _objc_msgSend_ygoa6aStret(_ptr, this.ref.pointer, _sel_maximumScreenBounds) : _ptr.ref = _objc_msgSend_ygoa6a(this.ref.pointer, _sel_maximumScreenBounds);
  final _finalizable = _ptr.cast<ffi.Uint8>().asTypedList(
      ffi.sizeOf<MLNCoordinateBounds>(), finalizer: pkg_ffi.calloc.nativeFree);
  return ffi.Struct.create<MLNCoordinateBounds>(_finalizable);

}
set maximumScreenBounds (MLNCoordinateBounds value)

The maximum bounds of the map that can be shown on screen.

@param MLNCoordinateBounds the bounds to constrain the screen to.

Implementation

set maximumScreenBounds(MLNCoordinateBounds value) {
_objc_msgSend_9ay59k(this.ref.pointer, _sel_setMaximumScreenBounds_, value);

}