removeTile method

Future<bool> removeTile (
  1. BMFTile tile
)

移除瓦片图

BMFTile tile 瓦片图 bool 成功返回true 失败false

Implementation

Future<bool> removeTile(BMFTile tile) async {
  return await BMFMapDispatcherFactory.instance.overlayDispatcher
      .removeTile(_mapChannel, tile);
}