* See * https://developers.google.com/maps/documentation/javascript/reference/map#Map.fitBounds
(
bounds: google.maps.LatLngBounds | google.maps.LatLngBoundsLiteral,
padding?: number | google.maps.Padding,
)
| 341 | * https://developers.google.com/maps/documentation/javascript/reference/map#Map.fitBounds |
| 342 | */ |
| 343 | fitBounds( |
| 344 | bounds: google.maps.LatLngBounds | google.maps.LatLngBoundsLiteral, |
| 345 | padding?: number | google.maps.Padding, |
| 346 | ) { |
| 347 | this._assertInitialized(); |
| 348 | this.googleMap.fitBounds(bounds, padding); |
| 349 | } |
| 350 | |
| 351 | /** |
| 352 | * See |
no test coverage detected