setUserLocationVerticalAlignment method

void setUserLocationVerticalAlignment(
  1. MLNAnnotationVerticalAlignment alignment, {
  2. required bool animated,
})

Sets the vertical alignment of the user location annotation within the receiver, with an optional transition.

@param alignment The vertical alignment of the user location annotation. @param animated If YES, the user location annotation animates to its new position within the map view. If NO, the user location annotation instantaneously moves to its new position.

Implementation

void setUserLocationVerticalAlignment(MLNAnnotationVerticalAlignment alignment, {required bool animated}) {
_objc_msgSend_1qddrus(this.ref.pointer, _sel_setUserLocationVerticalAlignment_animated_, alignment.value, animated);

}