bd09towgs84 static method

Coords bd09towgs84(
  1. Coords coords
)

Implementation

static Coords bd09towgs84(Coords coords) {
  if (isOutOfChina(coords)) return coords;
  final gcj02Coords = bd09togcj02(coords);
  return gcj02towgs84(gcj02Coords);
}