Custom coordinates on Follow me Mission DJI Mobile SDK for android

二次信任 提交于 2020-01-25 01:01:31

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!