getBoundingBox method

  1. @override
Future<BoundingBox> getBoundingBox()

Returns the geographical bounding box that this map file covers.

Requires _lateOpen to have been completed.

Implementation

@override
Future<BoundingBox> getBoundingBox() async {
  await _lateOpen();
  return getMapHeaderInfo().boundingBox;
}