setTileMode method

Future<void> setTileMode(
  1. bool arg_set
)

Sets the snapshotter to the tile mode.

In the tile mode, the snapshotter fetches the still image of a single tile.

@param set A boolean value representing if the snapshotter is in the tile mode.

Implementation

Future<void> setTileMode(bool arg_set) async {
  final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
      'dev.flutter.pigeon.mapbox_maps_flutter.MapSnapshotter.setTileMode',
      codec,
      binaryMessenger: _binaryMessenger);
  final List<Object?>? replyList =
      await channel.send(<Object?>[arg_set]) as List<Object?>?;
  if (replyList == null) {
    throw PlatformException(
      code: 'channel-error',
      message: 'Unable to establish connection on channel.',
    );
  } else if (replyList.length > 1) {
    throw PlatformException(
      code: replyList[0]! as String,
      message: replyList[1] as String?,
      details: replyList[2],
    );
  } else {
    return;
  }
}