zoomLevelForExpandingCluster method

double zoomLevelForExpandingCluster(
  1. MLNPointFeatureCluster cluster
)

Returns the zoom level at which the given cluster expands.

@param cluster An object of type MLNPointFeatureCluster (that conforms to the MLNPointFeatureCluster protocol).

@return Zoom level. This should be >= 0; any negative return value should be considered an error.

Implementation

double zoomLevelForExpandingCluster(MLNPointFeatureCluster cluster) {
  return objc.useMsgSendVariants ? _objc_msgSend_mabicuFpret(this.ref.pointer, _sel_zoomLevelForExpandingCluster_, cluster.ref.pointer) : _objc_msgSend_mabicu(this.ref.pointer, _sel_zoomLevelForExpandingCluster_, cluster.ref.pointer);

}