getBoundingBox method

  1. @override
Future<BoundingBox?> getBoundingBox()
override

Returns the area for which data is supplied.

@return bounding box of area.

Implementation

@override
Future<BoundingBox?> getBoundingBox() async {
  BoundingBox? result = await isolateInstancePool.compute(
      getBoundingBoxStatic, MapfileBoundingBoxRequest(filename));
  return result;
}