}
setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
setIconImage(Icons.get("jnetmap").getImage());
addWindowListener(Listeners.windowQuitListener());
// SplitPane (Map | Sidebar)
mapPanel = new TabPanel(JTabbedPane.TOP, JTabbedPane.SCROLL_TAB_LAYOUT, this);
sideBar = new JTabbedPane(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT);
splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true, mapPanel, sideBar);
splitPane.setDividerSize(3);
setSidebarVisible(Settings.getBoolean("mapview.sidebar.visible", true));
add(splitPane, BorderLayout.CENTER);