geoSouthwest method

GeoPoint geoSouthwest()

Calculate the southwest corner.

Implementation

GeoPoint geoSouthwest() {
  return reduce((p, c) {
    return GeoPoint(min(p.latitude, c.latitude), min(p.longitude, c.longitude));
  });
}