intersectsOverlayBounds method

bool intersectsOverlayBounds(
  1. MLNCoordinateBounds overlayBounds$1
)

Returns a Boolean indicating whether the specified rectangle intersects the receiver’s shape.

You can implement this method to provide more specific bounds checking for an overlay. If you do not implement it, the bounding rectangle is used to detect intersections.

@param overlayBounds The rectangle to intersect with the receiver’s area. @return YES if any part of the map rectangle intersects the receiver’s shape or NO if it does not.

Implementation

bool intersectsOverlayBounds(MLNCoordinateBounds overlayBounds$1) {
  return _objc_msgSend_10h1dgu(this.ref.pointer, _sel_intersectsOverlayBounds_, overlayBounds$1);

}