zoomToBoundingBox method
Implementation
Future<void> zoomToBoundingBox(
BoundingBox box, {
int paddinInPixel = 0,
}) async {
await interop
.flyToBounds(
mapIdMixin.toJS,
box.toBoundsJS(),
paddinInPixel.toJS,
)
.toDart;
}