├── FlightGearMap ├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── assets │ ├── 7-Segment.ttf │ ├── low │ │ ├── CHT-Oil-base.png │ │ ├── Fuel-Oil-base.png │ │ ├── ai.ref.png │ │ ├── ai.roll.ref.png │ │ ├── alt1.png │ │ ├── alt3.png │ │ ├── asi1.png │ │ ├── asi2.png │ │ ├── ati0.png │ │ ├── ati2.png │ │ ├── ati4.png │ │ ├── b1900d.png │ │ ├── battery-c172p.png │ │ ├── black.png │ │ ├── climb.png │ │ ├── clock.png │ │ ├── dme.png │ │ ├── egt1.png │ │ ├── fuel1.png │ │ ├── hdg1.png │ │ ├── hdg2.png │ │ ├── hsi.png │ │ ├── hsi1.png │ │ ├── hsi2.png │ │ ├── hsi3.png │ │ ├── liquid.hsi1.png │ │ ├── liquid.hsi2.png │ │ ├── liquid.hsi3.png │ │ ├── magnetos.png │ │ ├── manifold1.png │ │ ├── manifold2.png │ │ ├── misc1.png │ │ ├── misc2.png │ │ ├── misc3.png │ │ ├── misc4.png │ │ ├── nav1.png │ │ ├── nav2.png │ │ ├── nav3.png │ │ ├── nav4.png │ │ ├── nav5.png │ │ ├── nav6.png │ │ ├── oil1.png │ │ ├── pitchscale.png │ │ ├── radar1.png │ │ ├── radar2.png │ │ ├── rpm1.png │ │ ├── rpm2.png │ │ ├── senecaii.asi2.png │ │ ├── speed.png │ │ ├── speed2.png │ │ ├── speed3.png │ │ ├── speed4.png │ │ ├── switches.png │ │ ├── trimflaps.png │ │ ├── trn1.png │ │ └── vsi1.png │ ├── map.db │ └── medium │ │ ├── CHT-Oil-base.png │ │ ├── Fuel-Oil-base.png │ │ ├── ai.ref.png │ │ ├── ai.roll.ref.png │ │ ├── alt1.png │ │ ├── alt3.png │ │ ├── asi1.png │ │ ├── asi2.png │ │ ├── ati0.png │ │ ├── ati2.png │ │ ├── ati4.png │ │ ├── b1900d.png │ │ ├── battery-c172p.png │ │ ├── black.png │ │ ├── climb.png │ │ ├── clock.png │ │ ├── dme.png │ │ ├── egt1.png │ │ ├── fuel1.png │ │ ├── hdg1.png │ │ ├── hdg2.png │ │ ├── hsi.png │ │ ├── hsi1.png │ │ ├── hsi2.png │ │ ├── hsi3.png │ │ ├── liquid.hsi1.png │ │ ├── liquid.hsi2.png │ │ ├── liquid.hsi3.png │ │ ├── magnetos.png │ │ ├── manifold1.png │ │ ├── manifold2.png │ │ ├── misc1.png │ │ ├── misc2.png │ │ ├── misc3.png │ │ ├── misc4.png │ │ ├── nav1.png │ │ ├── nav2.png │ │ ├── nav3.png │ │ ├── nav4.png │ │ ├── nav5.png │ │ ├── nav6.png │ │ ├── oil1.png │ │ ├── pitchscale.png │ │ ├── radar1.png │ │ ├── radar2.png │ │ ├── rpm1.png │ │ ├── rpm2.png │ │ ├── senecaii.asi2.png │ │ ├── speed2.png │ │ ├── speed3.png │ │ ├── speed4.png │ │ ├── switches.png │ │ ├── trimflaps.png │ │ ├── trn1.png │ │ └── vsi1.png ├── libs │ ├── osmdroid-android-4.0.jar │ └── slf4j-android-1.6.1-RC1.jar ├── lint.xml ├── panel.xcf.gz ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcherplus.png │ ├── drawable-ldpi │ │ ├── ic_launcher.png │ │ └── ic_launcherplus.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcherplus.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcherplus.png │ ├── drawable │ │ ├── airport.png │ │ ├── border.xml │ │ ├── dist_b1900d.png │ │ ├── dist_basic.png │ │ ├── dist_c172.png │ │ ├── dist_c337.png │ │ ├── dist_comms.png │ │ ├── dist_liquid.png │ │ ├── dist_onlymap.png │ │ ├── dist_senecaii.png │ │ ├── dist_simplemap.png │ │ ├── dist_single.png │ │ ├── ndb.png │ │ ├── panel_back.xml │ │ ├── plane1.png │ │ ├── plane2.png │ │ ├── plane3.png │ │ ├── plane4.png │ │ ├── plane5.png │ │ ├── solidtile.png │ │ ├── vor.png │ │ └── white_border.xml │ ├── layout-large │ │ ├── commspanel.xml │ │ ├── map_liquid.xml │ │ ├── map_simplepanel.xml │ │ ├── only_map.xml │ │ └── panellist.xml │ ├── layout │ │ ├── commspanel.xml │ │ ├── distthumb.xml │ │ ├── freqpicker.xml │ │ ├── instruments.xml │ │ ├── map_liquid.xml │ │ ├── map_simplepanel.xml │ │ ├── only_map.xml │ │ ├── panellist.xml │ │ └── singleinstrument.xml │ ├── menu │ │ └── main.xml │ ├── raw │ │ └── changelog.txt │ ├── values-es │ │ ├── arrays.xml │ │ └── strings.xml │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ └── strings.xml │ └── xml │ │ └── preferences.xml └── src │ └── com │ └── juanvvc │ └── flightgear │ ├── BitmapProvider.java │ ├── ChangeLog.java │ ├── CommsActivity.java │ ├── FGFSConnection.java │ ├── MyBitmap.java │ ├── MyLog.java │ ├── PanelActivity.java │ ├── PanelListActivity.java │ ├── PlaneData.java │ ├── Preferences.java │ ├── SingleInstrumentActivity.java │ ├── instruments │ ├── CalibratableRotateSurface.java │ ├── CalibratableSurfaceManager.java │ ├── Instrument.java │ ├── InstrumentType.java │ ├── MagnetosStarterSurface.java │ ├── RotateSurface.java │ ├── SlippingSurface.java │ ├── StaticSurface.java │ ├── Surface.java │ └── SwitchSurface.java │ ├── maps │ ├── CompassOverlay.java │ ├── DatabaseHelper.java │ ├── MapOverlay.java │ └── SolidTileSource.java │ └── panels │ ├── B1900D.java │ ├── Cessna172.java │ ├── Cessna337.java │ ├── LiquidDisplay.java │ ├── PanelView.java │ └── SenecaII.java ├── README ├── andatlas-b1900d.xml ├── andatlas.xml ├── assets.high.zip ├── logo.png ├── nav.xcf.gz ├── switches.blend ├── switches.png └── trimflaps.svg /FlightGearMap/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /FlightGearMap/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /gen 3 | -------------------------------------------------------------------------------- /FlightGearMap/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | FlightGearMap 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /FlightGearMap/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 45 | 46 | -------------------------------------------------------------------------------- /FlightGearMap/assets/7-Segment.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/7-Segment.ttf -------------------------------------------------------------------------------- /FlightGearMap/assets/low/CHT-Oil-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/CHT-Oil-base.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/Fuel-Oil-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/Fuel-Oil-base.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/ai.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/ai.ref.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/ai.roll.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/ai.roll.ref.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/alt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/alt1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/alt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/alt3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/asi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/asi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/asi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/asi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/ati0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/ati0.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/ati2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/ati2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/ati4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/ati4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/b1900d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/b1900d.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/battery-c172p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/battery-c172p.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/black.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/climb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/climb.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/clock.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/dme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/dme.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/egt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/egt1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/fuel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/fuel1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/hdg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/hdg1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/hdg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/hdg2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/hsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/hsi.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/hsi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/hsi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/hsi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/hsi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/hsi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/hsi3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/liquid.hsi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/liquid.hsi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/liquid.hsi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/liquid.hsi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/liquid.hsi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/liquid.hsi3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/magnetos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/magnetos.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/manifold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/manifold1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/manifold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/manifold2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/misc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/misc1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/misc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/misc2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/misc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/misc3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/misc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/misc4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/nav1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/nav1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/nav2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/nav2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/nav3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/nav3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/nav4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/nav4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/nav5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/nav5.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/nav6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/nav6.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/oil1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/oil1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/pitchscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/pitchscale.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/radar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/radar1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/radar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/radar2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/rpm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/rpm1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/rpm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/rpm2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/senecaii.asi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/senecaii.asi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/speed.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/speed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/speed2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/speed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/speed3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/speed4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/speed4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/switches.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/trimflaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/trimflaps.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/trn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/trn1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/low/vsi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/low/vsi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/map.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/map.db -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/CHT-Oil-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/CHT-Oil-base.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/Fuel-Oil-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/Fuel-Oil-base.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/ai.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/ai.ref.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/ai.roll.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/ai.roll.ref.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/alt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/alt1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/alt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/alt3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/asi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/asi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/asi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/asi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/ati0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/ati0.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/ati2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/ati2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/ati4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/ati4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/b1900d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/b1900d.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/battery-c172p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/battery-c172p.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/black.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/climb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/climb.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/clock.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/dme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/dme.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/egt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/egt1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/fuel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/fuel1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/hdg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/hdg1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/hdg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/hdg2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/hsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/hsi.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/hsi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/hsi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/hsi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/hsi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/hsi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/hsi3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/liquid.hsi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/liquid.hsi1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/liquid.hsi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/liquid.hsi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/liquid.hsi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/liquid.hsi3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/magnetos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/magnetos.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/manifold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/manifold1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/manifold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/manifold2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/misc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/misc1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/misc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/misc2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/misc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/misc3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/misc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/misc4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/nav1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/nav1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/nav2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/nav2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/nav3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/nav3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/nav4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/nav4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/nav5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/nav5.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/nav6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/nav6.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/oil1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/oil1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/pitchscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/pitchscale.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/radar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/radar1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/radar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/radar2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/rpm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/rpm1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/rpm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/rpm2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/senecaii.asi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/senecaii.asi2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/speed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/speed2.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/speed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/speed3.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/speed4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/speed4.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/switches.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/trimflaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/trimflaps.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/trn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/trn1.png -------------------------------------------------------------------------------- /FlightGearMap/assets/medium/vsi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/assets/medium/vsi1.png -------------------------------------------------------------------------------- /FlightGearMap/libs/osmdroid-android-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/libs/osmdroid-android-4.0.jar -------------------------------------------------------------------------------- /FlightGearMap/libs/slf4j-android-1.6.1-RC1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/libs/slf4j-android-1.6.1-RC1.jar -------------------------------------------------------------------------------- /FlightGearMap/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FlightGearMap/panel.xcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/panel.xcf.gz -------------------------------------------------------------------------------- /FlightGearMap/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /FlightGearMap/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-15 15 | -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-hdpi/ic_launcherplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-hdpi/ic_launcherplus.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-ldpi/ic_launcherplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-ldpi/ic_launcherplus.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-mdpi/ic_launcherplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-mdpi/ic_launcherplus.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable-xhdpi/ic_launcherplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable-xhdpi/ic_launcherplus.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/airport.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/border.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_b1900d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_b1900d.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_basic.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_c172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_c172.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_c337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_c337.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_comms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_comms.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_liquid.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_onlymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_onlymap.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_senecaii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_senecaii.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_simplemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_simplemap.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/dist_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/dist_single.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/ndb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/ndb.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/panel_back.xml: -------------------------------------------------------------------------------- 1 | 4 | 8 | -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/plane1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/plane1.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/plane2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/plane2.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/plane3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/plane3.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/plane4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/plane4.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/plane5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/plane5.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/solidtile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/solidtile.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/vor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juanvvc/FlightGearMap/c69e3403dccdbc2d1b599893aed11a766a3580b2/FlightGearMap/res/drawable/vor.png -------------------------------------------------------------------------------- /FlightGearMap/res/drawable/white_border.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /FlightGearMap/res/layout-large/commspanel.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |