transformToWgs84 static method

Point transformToWgs84(
  1. Projection from,
  2. Point point
)

Implementation

static PROJ.Point transformToWgs84(PROJ.Projection from, PROJ.Point point) {
  return from.transform(EPSG4326, point);
}