wgs84tobd09 static method

Coords wgs84tobd09(
  1. Coords coords
)

Implementation

static Coords wgs84tobd09(Coords coords) {
  if (isOutOfChina(coords)) return coords;
  final gcj02Coords = wgs84togcj02(coords);
  return gcj02tobd09(gcj02Coords);
}