You can use Chrome options for playing with the orientation of the browser. Here is the code, use the following set of commands for opening the Chrome browser in maximized form
ChromeOptions co = new ChromeOptions();
co.addArguments("--start-maximized");
WebDriver webdriver = new ChromeDriver(co);