Changeset 5188 in ntrip for trunk/BNC/src/map
- Timestamp:
- Jun 9, 2013, 10:58:15 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/map/bncmapwin.cpp
r5187 r5188 29 29 * Class: bncMapWin 30 30 * 31 * Purpose: Displays the help31 * Purpose: Displays the Google Map 32 32 * 33 33 * Author: L. Mervart … … 40 40 41 41 #include "map/bncmapwin.h" 42 #include "bncutils.h" 42 43 43 44 // Constructor … … 149 150 // 150 151 //////////////////////////////////////////////////////////////////////////// 151 void bncMapWin::slotNewPosition(bncTime time, double xx, double yy, double zz) { 152 152 void bncMapWin::slotNewPosition(bncTime /* time */, double xx, double yy, double zz) { 153 double xyz[3]; 154 xyz[0] = xx; 155 xyz[1] = yy; 156 xyz[2] = zz; 157 double ell[3]; 158 xyz2ell(xyz, ell); 159 gotoLocation(ell[0]*180.0/M_PI, ell[1]*180.0/M_PI); 153 160 }
Note:
See TracChangeset
for help on using the changeset viewer.