GpsSet.h
上传用户:hzwailv
上传日期:2010-01-09
资源大小:405k
文件大小:3k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #if !defined(AFX_GPSSET_H__199D7980_7451_11D3_92B5_0000E826141B__INCLUDED_)
  2. #define AFX_GPSSET_H__199D7980_7451_11D3_92B5_0000E826141B__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // GpsSet.h : header file
  7. //
  8. #define GPS_NOOPERATION   50
  9. #define GPS_ADDTARGET     51
  10. #define GPS_EDITTARGET    52
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CGpsSet command target
  13. class CGpsSet : public CCmdTarget
  14. {
  15. DECLARE_DYNCREATE(CGpsSet)
  16. CGpsSet();           // protected constructor used by dynamic creation
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. void SetStartXY(double X,double Y);
  22. double StartX;//x 
  23. double StartY;//y
  24. double dSpeed;
  25. double dDirectory;//方向
  26. double m_dCX;//当前位置X坐标
  27. double m_dCY;//当前位置Y坐标
  28. CString strName;
  29.     int m_nFeaID;
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CGpsSet)
  33. public:
  34. virtual void Serialize(CArchive& ar);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. BOOL HitTest(double x, double y,CMapX* pMapX);
  39. void Run();
  40. void AddFeature(CMapX* pMapX,CMapXLayer& layer);
  41. CMapXFeature FindFeature(CMapXLayer &layer);
  42. void UpdateFeature(CMapXFeature& feature);
  43. void UpdateGraph(CMapXLayer& layer);
  44. virtual ~CGpsSet();
  45. // Generated message map functions
  46. //{{AFX_MSG(CGpsSet)
  47. // NOTE - the ClassWizard will add and remove member functions here.
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CGpsSetArray command target
  54. class CGpsSetArray : public CCmdTarget
  55. {
  56. DECLARE_DYNCREATE(CGpsSetArray)
  57. CGpsSetArray();           // protected constructor used by dynamic creation
  58. // Attributes
  59. public:
  60. CObArray m_ObjectList;
  61. // Operations
  62. public:
  63. void UpdateGraph(CMapXLayer& layer);
  64. void Run();
  65. void DeleteAllTarget();
  66. CGpsSet* m_pActiveTarget;
  67. CGpsSet* GetTarget(int nIndex);
  68. void AddTarget(CGpsSet* target);
  69. // Overrides
  70. // ClassWizard generated virtual function overrides
  71. //{{AFX_VIRTUAL(CGpsSetArray)
  72. //}}AFX_VIRTUAL
  73. // Implementation
  74. public:
  75. CGpsSet* GetActiveTarget();
  76. void SetActiveTarget(CGpsSet* pTarget);
  77. CGpsSet* HitTest(double X,double Y,CMapX* pMapX);
  78. virtual ~CGpsSetArray();
  79. // Generated message map functions
  80. //{{AFX_MSG(CGpsSetArray)
  81. // NOTE - the ClassWizard will add and remove member functions here.
  82. //}}AFX_MSG
  83. DECLARE_MESSAGE_MAP()
  84. };
  85. /////////////////////////////////////////////////////////////////////////////
  86. //{{AFX_INSERT_LOCATION}}
  87. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  88. #endif // !defined(AFX_GPSSET_H__199D7980_7451_11D3_92B5_0000E826141B__INCLUDED_)