The SIMCONNECT_POSITION_REFERENTIAL enum is used to define what reference is being used for the camera position.

 

Syntax
enum SIMCONNECT_POSITION_REFERENTIAL
{
    SIMCONNECT_POSITION_REFERENTIAL_NONE,
    SIMCONNECT_POSITION_REFERENTIAL_AIRCRAFT,
    SIMCONNECT_POSITION_REFERENTIAL_WORLD,
    SIMCONNECT_POSITION_REFERENTIAL_EYEPOINT
};

 

Members
MemberDescription
SIMCONNECT_POSITION_REFERENTIAL_NONENo reference (this should not be used).
SIMCONNECT_POSITION_REFERENTIAL_AIRCRAFTThe position is an offset from the aircraft Datum Reference Point (expressed in meters).
SIMCONNECT_POSITION_REFERENTIAL_WORLDThe position is expressed using latitude, longitude, and altitude.
SIMCONNECT_POSITION_REFERENTIAL_EYEPOINTThe position is an offset from the aircraft pilot eyepoint (expressed in meters).

 

Remarks

This enum will be used by the SimConnect_CameraGet and other camera functions.