├── .gitignore ├── GSDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── GSDemo.xccheckout │ │ └── GSDemo.xcscmblueprint │ └── xcuserdata │ │ ├── DJI.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── ares.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── zlinoliver.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── DJI.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── GSDemo.xcscheme │ │ └── xcschememanagement.plist │ ├── ares.xcuserdatad │ └── xcschemes │ │ ├── GSDemo.xcscheme │ │ └── xcschememanagement.plist │ └── zlinoliver.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── GSDemo.xcscheme │ └── xcschememanagement.plist ├── GSDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── DJIAircraftAnnotation.h ├── DJIAircraftAnnotation.m ├── DJIAircraftAnnotationView.h ├── DJIAircraftAnnotationView.m ├── DJIGSButtonViewController.h ├── DJIGSButtonViewController.m ├── DJIGSButtonViewController.xib ├── DJIMapController.h ├── DJIMapController.m ├── DJIRootViewController.h ├── DJIRootViewController.m ├── DJIWaypointConfigViewController.h ├── DJIWaypointConfigViewController.m ├── DJIWaypointConfigViewController.xib ├── DemoUtility │ ├── DemoUtility.h │ └── DemoUtility.m ├── GSDemo-pch.pch ├── GSDemo.entitlements ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── aircraft.imageset │ │ ├── Contents.json │ │ └── aircraft@2x.png ├── Info.plist ├── aircraft@2x.png └── main.m ├── GSDemoTests ├── GSDemoTests.m └── Info.plist ├── LICENSE.txt ├── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.xcworkspace/xcshareddata/GSDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.xcworkspace/xcshareddata/GSDemo.xccheckout -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.xcworkspace/xcshareddata/GSDemo.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.xcworkspace/xcshareddata/GSDemo.xcscmblueprint -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.xcworkspace/xcuserdata/DJI.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.xcworkspace/xcuserdata/DJI.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.xcworkspace/xcuserdata/ares.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.xcworkspace/xcuserdata/ares.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GSDemo.xcodeproj/project.xcworkspace/xcuserdata/zlinoliver.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/project.xcworkspace/xcuserdata/zlinoliver.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/DJI.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/DJI.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/DJI.xcuserdatad/xcschemes/GSDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/DJI.xcuserdatad/xcschemes/GSDemo.xcscheme -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/DJI.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/DJI.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/ares.xcuserdatad/xcschemes/GSDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/ares.xcuserdatad/xcschemes/GSDemo.xcscheme -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/ares.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/ares.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcschemes/GSDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcschemes/GSDemo.xcscheme -------------------------------------------------------------------------------- /GSDemo.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GSDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/AppDelegate.h -------------------------------------------------------------------------------- /GSDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/AppDelegate.m -------------------------------------------------------------------------------- /GSDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /GSDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GSDemo/DJIAircraftAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIAircraftAnnotation.h -------------------------------------------------------------------------------- /GSDemo/DJIAircraftAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIAircraftAnnotation.m -------------------------------------------------------------------------------- /GSDemo/DJIAircraftAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIAircraftAnnotationView.h -------------------------------------------------------------------------------- /GSDemo/DJIAircraftAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIAircraftAnnotationView.m -------------------------------------------------------------------------------- /GSDemo/DJIGSButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIGSButtonViewController.h -------------------------------------------------------------------------------- /GSDemo/DJIGSButtonViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIGSButtonViewController.m -------------------------------------------------------------------------------- /GSDemo/DJIGSButtonViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIGSButtonViewController.xib -------------------------------------------------------------------------------- /GSDemo/DJIMapController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIMapController.h -------------------------------------------------------------------------------- /GSDemo/DJIMapController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIMapController.m -------------------------------------------------------------------------------- /GSDemo/DJIRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIRootViewController.h -------------------------------------------------------------------------------- /GSDemo/DJIRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIRootViewController.m -------------------------------------------------------------------------------- /GSDemo/DJIWaypointConfigViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIWaypointConfigViewController.h -------------------------------------------------------------------------------- /GSDemo/DJIWaypointConfigViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIWaypointConfigViewController.m -------------------------------------------------------------------------------- /GSDemo/DJIWaypointConfigViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DJIWaypointConfigViewController.xib -------------------------------------------------------------------------------- /GSDemo/DemoUtility/DemoUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DemoUtility/DemoUtility.h -------------------------------------------------------------------------------- /GSDemo/DemoUtility/DemoUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/DemoUtility/DemoUtility.m -------------------------------------------------------------------------------- /GSDemo/GSDemo-pch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/GSDemo-pch.pch -------------------------------------------------------------------------------- /GSDemo/GSDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/GSDemo.entitlements -------------------------------------------------------------------------------- /GSDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GSDemo/Images.xcassets/aircraft.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/Images.xcassets/aircraft.imageset/Contents.json -------------------------------------------------------------------------------- /GSDemo/Images.xcassets/aircraft.imageset/aircraft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/Images.xcassets/aircraft.imageset/aircraft@2x.png -------------------------------------------------------------------------------- /GSDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/Info.plist -------------------------------------------------------------------------------- /GSDemo/aircraft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/aircraft@2x.png -------------------------------------------------------------------------------- /GSDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemo/main.m -------------------------------------------------------------------------------- /GSDemoTests/GSDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemoTests/GSDemoTests.m -------------------------------------------------------------------------------- /GSDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/GSDemoTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '9.0' 2 | 3 | target 'GSDemo' do 4 | pod 'DJI-SDK-iOS', '~> 4.16.1' 5 | end 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJI-Mobile-SDK-Tutorials/iOS-GSDemo/HEAD/README.md --------------------------------------------------------------------------------