FlightPath simply lets a user create a new path by drawing a poly-line on a map, and then persistently saves this path(a name and a list of points) to Realm. The user can also see all the previously created paths which are displayed inside a ListView in the Home Component.
The major code for this project is contained within index.ios.js and the ./app folder which contains the following components: Home.js NewMap.js ViewPath.js
###Dependency Issues If you are having issues downloading the dependencies for this project (react-native-maps or RTC files) it is likely due to a linking bug in the newest version of React-Native. Try the following steps:
- unlink react-native-maps: react-native unlink react-native-maps
- uninstall react-native-maps: npm uninstall react-native-maps --save
- install a previous version of react-native: npm install react-native@0.39 --save
- install react-native-maps: npm install react-native-maps --save
- link react-native-maps: react-native link react-native-maps



