EquirectangularProjection constructor
Creates an equirectangular projection.
Implementation
EquirectangularProjection({
(double, double)? center,
double scale = 1,
Point? translate,
}) {
if (center != null) this.center = center;
this.scale = scale;
if (translate != null) this.translate = translate;
}