| 208 | } |
| 209 | |
| 210 | kml::MultiGeometry::LineT Track::GetGeometry() const |
| 211 | { |
| 212 | kml::MultiGeometry::LineT geometry; |
| 213 | for (auto const & line : m_data.m_geometry.m_lines) |
| 214 | for (size_t i = 0; i < line.size(); ++i) |
| 215 | geometry.emplace_back(line[i]); |
| 216 | return geometry; |
| 217 | } |
| 218 | |
| 219 | TrackStatistics Track::GetStatistics() const |
| 220 | { |