visibleAnnotations property
NSArray?
get
visibleAnnotations
The complete list of annotations associated with the receiver that are currently visible.
The objects in this array must adopt the MLNAnnotation protocol. If no
annotations are associated with the map view or if no annotations associated
with the map view are currently visible, the value of this property is nil.
Implementation
objc.NSArray? get visibleAnnotations {
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_visibleAnnotations);
return _ret.address == 0 ? null : objc.NSArray.castFromPointer(_ret, retain: true, release: true);
}