showAnnotations$1 method

void showAnnotations$1(
  1. NSArray annotations, {
  2. required UIEdgeInsets edgePadding,
  3. required bool animated,
})

Deprecated. Sets the visible region so that the map displays the specified annotations with the specified amount of padding on each side.

Calling this method updates the value in the visibleCoordinateBounds property and potentially other properties to reflect the new map region.

To specify a completion handler to execute after the animation finishes, use the -showAnnotations:edgePadding:animated:completionHandler: method.

@param annotations The annotations that you want to be visible in the map. @param insets The minimum padding (in screen points) around the edges of the map view to keep clear of annotations. @param animated YES if you want the map region change to be animated, or NO if you want the map to display the new region immediately without animations.

Implementation

void showAnnotations$1(objc.NSArray annotations, {required UIEdgeInsets edgePadding,required bool animated}) {
_objc_msgSend_1f4zv7b(this.ref.pointer, _sel_showAnnotations_edgePadding_animated_, annotations.ref.pointer, edgePadding, animated);

}