scale abstract method

double? scale(
  1. double? zoom
)

Returns the scale used when transforming projected coordinates into pixel coordinates for a particular zoom.

For example, it returns 256 * 2^zoom for Mercator-based CRS.

Implementation

double? scale(double? zoom);