direction property

double get direction

The heading of the map, measured in degrees clockwise from true north.

The value 0 means that the top edge of the map view corresponds to true north. The value 90 means the top of the map is pointing due east. The value 180 means the top of the map points due south, and so on.

Changing the value of this property updates the map view immediately. If you want to animate the change, use the -setDirection:animated: method instead.

Implementation

double get direction {
  return objc.useMsgSendVariants ? _objc_msgSend_1ukqyt8Fpret(this.ref.pointer, _sel_direction) : _objc_msgSend_1ukqyt8(this.ref.pointer, _sel_direction);

}
set direction (double value)

The heading of the map, measured in degrees clockwise from true north.

The value 0 means that the top edge of the map view corresponds to true north. The value 90 means the top of the map is pointing due east. The value 180 means the top of the map points due south, and so on.

Changing the value of this property updates the map view immediately. If you want to animate the change, use the -setDirection:animated: method instead.

Implementation

set direction(double value) {
_objc_msgSend_hwm8nu(this.ref.pointer, _sel_setDirection_, value);

}