From 3993bf0883ec229cac90e436d6e84cd38307c2c3 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Fri, 18 Nov 2016 21:41:43 -0500 Subject: Initial map implementation --- src/com/benburwell/planes/gui/Main1090.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/com/benburwell/planes/gui/Main1090.java') diff --git a/src/com/benburwell/planes/gui/Main1090.java b/src/com/benburwell/planes/gui/Main1090.java index 490e3e6..16c03d6 100644 --- a/src/com/benburwell/planes/gui/Main1090.java +++ b/src/com/benburwell/planes/gui/Main1090.java @@ -38,6 +38,9 @@ public class Main1090 extends JFrame { AircraftTableComponent aircraftData = new AircraftTableComponent(this.aircraft); this.tabbedPane.addTab("Aircraft Data", aircraftData.getComponent()); + AircraftMapComponent aircraftMap = new AircraftMapComponent(this.aircraft); + this.tabbedPane.addTab("Live Map", aircraftMap.getComponent()); + this.add(this.tabbedPane); this.tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT); } -- cgit v1.2.3