问题
Is it possible to feed DJI Mobile API's Follow Me Mission
custom coordinates? I am developing on the'Phantom 3 Advanced'. For example:
Double Lat = 33.8943;
Double Lon = 32.0993;
DJIFollowMe(Lat, Lon){
// Execute the follow me mission
}
回答1:
Yes, the following is an example:
DJIFollowMeMission.updateFollowMeCoordinate(latitude, longitude, new DJICommonCallbacks.DJICompletionCallback() {
@Override
public void onResult(DJIError djiError) {
}
});
来源:https://stackoverflow.com/questions/43291644/custom-coordinates-on-follow-me-mission-dji-mobile-sdk-for-android