| 223 | } |
| 224 | |
| 225 | void Track::appendWaypoint(const TrackPoint& point, const QString& name) |
| 226 | { |
| 227 | waypoints.push_back(point); |
| 228 | waypoints.back().map_coord = map_georef.toMapCoordF(point.latlon, nullptr); // TODO: check for errors |
| 229 | waypoint_names.push_back(name); |
| 230 | } |
| 231 | |
| 232 | void Track::changeMapGeoreferencing(const Georeferencing& new_map_georef) |
| 233 | { |
no test coverage detected