geoNortheast method

GeoPoint geoNortheast()

Calculate the northeast corner.

Implementation

GeoPoint geoNortheast() {
  return reduce((p, c) {
    return GeoPoint(max(p.latitude, c.latitude), max(p.longitude, c.longitude));
  });
}