visibleBounds property

LatLngBounds visibleBounds

This is the LatLngBounds corresponding to four corners of this camera. This takes rotation in to account.

Implementation

LatLngBounds get visibleBounds => _bounds ??= LatLngBounds(
      unproject(pixelBounds.bottomLeft, zoom),
      unproject(pixelBounds.topRight, zoom),
    );