geoOrthographic function
Creates an orthographic projection.
Implementation
OrthographicProjection geoOrthographic({
(double, double)? center,
double scale = 1,
Point? translate,
(double, double, double)? rotate,
}) {
return OrthographicProjection(
center: center,
scale: scale,
translate: translate,
rotate: rotate,
);
}