| 49 | } |
| 50 | |
| 51 | location::GpsInfo GetGps(double x, double y) |
| 52 | { |
| 53 | location::GpsInfo info; |
| 54 | info.m_latitude = mercator::YToLat(y); |
| 55 | info.m_longitude = mercator::XToLon(x); |
| 56 | info.m_horizontalAccuracy = 2; |
| 57 | return info; |
| 58 | } |
| 59 | |
| 60 | vector<vector<Segment>> const GetSegments() |
| 61 | { |