coordinates property

Pointer<CLLocationCoordinate2D> get coordinates

The array of vertices associated with the shape.

This C array is a pointer to a structure inside the multipoint object, which may have a lifetime shorter than the multipoint object and will certainly not have a longer lifetime. Therefore, you should copy the C array if it needs to be stored outside of the memory context in which you use this property.

Implementation

ffi.Pointer<CLLocationCoordinate2D> get coordinates {
  return _objc_msgSend_k56nhe(this.ref.pointer, _sel_coordinates);

}