You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The method is not effective. State().setAircraftLocation means that you are setting the aircraft location for the flight status instance you have obtained, but it will not change the aircraft's position. setAircraftLocation is an interface that is rarely used, so it is not explained in the documentation.
Is there any method that I can tell the drone a latitude, longitude and altitude to go to? Something like that already exists in WaypointMissionOperator, however, for drones that don't support WaypointMissionOperator?
For drones that do not support waypoint missions, the SDK currently does not have an interface for the aircraft to autonomously fly to a specific location. The Virtual Stick feature can control the aircraft's movement by inputting the aircraft's speed. If you need to achieve autonomous flight on a drone that does not support waypoint missions, you can currently consider using the Virtual Stick feature to implement a self-flight motion control function.
DJISampleApplication.getAircraftInstance().getFlightController().getState().setAircraftLocation(waypoint)
What does the method do? I didn't find it on the MSDK API website
The text was updated successfully, but these errors were encountered: