Nov 22
wwjava in fullscreen
to have wwjava run in fullscreen, try the following:
- - instantiate your worlwind JFrame (WWFrame in supplied demos)
- - make it non-resizable (wwFrame.setResizable(false);)
- - finally type the following incantation:
GraphicsDevice graphicsDevice = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice(); graphicsDevice.setFullScreenWindow(wwFrame); wwFrame.setVisible(true);
where wwFrame is your worldwind frame.







