bounds property

LatLngBounds bounds

Bounds of this map.

Implementation

LatLngBounds get bounds {
  final bounds = pixelBounds;

  return LatLngBounds(
    unproject(bounds.bottomLeft),
    unproject(bounds.topRight),
  );
}