JFrame frame = new JFrame("Map");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// GraphicsEnvironment.getLocalGraphicsEnvironment()
// .getDefaultScreenDevice().setFullScreenWindow(frame);
GuiMap map = new GuiMap(data); // , vis_sal_Palette, inputColors );
MenuControl colorPicker = new MenuControl(map); // , vis_sal_Palette,
// inputColors );
frame.add(map, BorderLayout.CENTER);
frame.add(colorPicker, BorderLayout.PAGE_END);