WGS84Projection.fromLatLong constructor
Implementation
factory WGS84Projection.fromLatLong(
{required double latitude, required double longitude}) {
return WGS84Projection._create(
Coordinates(latitude: latitude, longitude: longitude));
}