offset static method
Offsets a coordinate by metres east / north, returning [lat, lng].
Implementation
static List<double> offset(double lat, double lng, {double east = 0, double north = 0}) => <double>[
lat + north / earthRadius * 180 / pi,
lng + east / (earthRadius * cos(_rad(lat))) * 180 / pi,
];