| 53 | } |
| 54 | |
| 55 | kml::BookmarkData CreateBookmark(m2::PointD const & point, bool isStart) |
| 56 | { |
| 57 | kml::BookmarkData bookmarkData; |
| 58 | bookmarkData.m_color = {isStart ? kml::PredefinedColor::Red : kml::PredefinedColor::Blue, 0}; |
| 59 | bookmarkData.m_point = point; |
| 60 | |
| 61 | return bookmarkData; |
| 62 | } |
| 63 | |
| 64 | template <typename AnotherResult> |
| 65 | void SaveKmlFileDataTo(RoutesBuilder::Result const & mapsmeResult, AnotherResult const & apiResult, |
no outgoing calls
no test coverage detected