extendBounds method

void extendBounds(
  1. LatLngBounds bounds
)

Expands bounding box by other bounds object. If provided bounds object is smaller than current one, it is not shrunk. This method mutates the bounds object on which it is called.

Implementation

void extendBounds(LatLngBounds bounds) {
  _extend(bounds._sw, bounds._ne);
}