#pragma once #include "standardglobe_global.h" /// /// WGS84坐标系坐标类型 /// struct LLAPos { double _lon_deg = 0; double _lat_deg = 0; double _alt_m = 0; }; /// /// 标准球体坐标转换工具 /// class STANDARDGLOBE_EXPORT StandardGlobe { public: StandardGlobe(); };