getBoundingBox method
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;
}