Skip to main content

LocationTypeEnum

enum class LocationTypeEnum

Description: Location type enumeration class

enum class LocationTypeEnum(val value: Int) {

/**
* unknown
*/
UNKNOWN(0),

/**
* Aircraft take-off position
*/
TAKE_OFF(1),

/**
* Remote control position
*/
RC(2),

/**
* The current position of the aircraft
*/
DRONE_CURRENT(3);

}