getBounds method

Future<BoundingBox> getBounds()
inherited

Implementation

Future<BoundingBox> getBounds() async {
  final boundingBoxMap = interop.getBounds(mapIdMixin.toJS).toDart();

  return BoundingBox.fromMap(Map<String, double>.from(boundingBoxMap));
}