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