getOriginZoom method

int getOriginZoom(
  1. int clusterId
)

Returns the zoom level at which the cluster with the given id appears

Implementation

int getOriginZoom(int clusterId) {
  return (clusterId - _length) % 32;
}