MercatorProjection constructor
Creates a Mercator projection.
Implementation
MercatorProjection({
(double, double)? center,
double scale = 1,
Point? translate,
}) {
if (center != null) this.center = center;
this.scale = scale;
if (translate != null) this.translate = translate;
}