getBoundingBox method

  1. @override
Future<BoundingBox> getBoundingBox()

Returns the geographic area covered by this datastore.

Returns the bounding box defining the extent of available map data

Implementation

@override
Future<BoundingBox> getBoundingBox() async {
  BoundingBox result = await _isolateInstance.compute(_MapfileBoundingBoxRequest());
  return result;
}