WGS84Projection constructor

WGS84Projection(
  1. Coordinates coordinates
)

Creates a new WGS84Projection from Coordinates.

Parameters

  • coordinates: (Coordinates) Geographic coordinates to wrap.

Implementation

factory WGS84Projection(Coordinates coordinates) {
  return WGS84Projection._create(coordinates);
}