supportsTile method

  1. @override
Future<bool> supportsTile(
  1. Tile tile
)

Checks if the datastore contains data for the specified tile.

tile The tile to check for data availability Returns true if tile data is available, false otherwise

Implementation

@override
Future<bool> supportsTile(Tile tile) async {
  bool result = await _isolateInstance.compute(_MapfileSupportsTileRequest(tile));
  return result;
}