class DJIHotpointAction
@interface DJIHotpointAction : DJIMissionAction
Description:
This class represents a hotpoint action used as an element in a Timeline mission. By creating an object of this class and adding it to Mission Control's Timeline, the aircraft will fly along a portion of a circle centered on a location of interest when the Timeline reaches the action.
Class Members:
method initWithMission
- (instancetype )initWithMission:(DJIHotpointMission*)mission
Header: DJIHotpointAction.h
Description:
Initialize with hotpoint mission. The Hotpoint action will automatically stop after one complete orbit (360 degrees).
method initWithMission:surroundingAngle
- (instancetype )initWithMission:(DJIHotpointMission*)mission surroundingAngle:(float )surroundingAngle
Header: DJIHotpointAction.h
Description:
Initialize with a hotpoint mission and the angular distance the aircraft should travel within the orbit.
Surrounding Angle
property
property surroundingAngle
@property (nonatomic , assign ) float surroundingAngle
Header: DJIHotpointAction.h
Description:
The angular distance in degrees the aircraft will travel in the orbit of the hotpoint. The default is 360 degrees.
property mission
@property (nonatomic , readonly ) DJIHotpointMission *mission
Header: DJIHotpointAction.h
Description:
The hotpoint mission which is associated with this action.
See Also:
DJIHotpointMission