scale method

num scale(
  1. double zoom
)

Zoom to Scale function.

Implementation

num scale(double zoom) {
  return 256 * math.pow(2, zoom);
}