userLocationVerticalAlignment property
MLNAnnotationVerticalAlignment
get
userLocationVerticalAlignment
The vertical alignment of the user location annotation within the receiver. The
default value is MLNAnnotationVerticalAlignment/MLNAnnotationVerticalAlignmentCenter.
Changing the value of this property updates the map view with an animated
transition. If you don’t want to animate the change, use the
-setUserLocationVerticalAlignment:animated: method instead.
Implementation
MLNAnnotationVerticalAlignment get userLocationVerticalAlignment {
final _ret = _objc_msgSend_1m9zum6(this.ref.pointer, _sel_userLocationVerticalAlignment);
return MLNAnnotationVerticalAlignment.fromValue(_ret);
}
set
userLocationVerticalAlignment
(MLNAnnotationVerticalAlignment value)
The vertical alignment of the user location annotation within the receiver. The
default value is MLNAnnotationVerticalAlignment/MLNAnnotationVerticalAlignmentCenter.
Changing the value of this property updates the map view with an animated
transition. If you don’t want to animate the change, use the
-setUserLocationVerticalAlignment:animated: method instead.
Implementation
set userLocationVerticalAlignment(MLNAnnotationVerticalAlignment value) {
_objc_msgSend_47doj4(this.ref.pointer, _sel_setUserLocationVerticalAlignment_, value.value);
}