| 218 | {"shop-funeral_directors", {kml::BookmarkIcon::None, BookmarkBaseType::None}}}; |
| 219 | |
| 220 | void ValidateKmlData(std::unique_ptr<kml::FileData> & data) |
| 221 | { |
| 222 | if (!data) |
| 223 | return; |
| 224 | |
| 225 | for (auto & t : data->m_tracksData) |
| 226 | if (t.m_layers.empty()) |
| 227 | t.m_layers.emplace_back(kml::KmlParser::GetDefaultTrackLayer()); |
| 228 | } |
| 229 | |
| 230 | /// @todo(KK): This code is a temporary solution for the filtering the duplicated points in KMLs. |
| 231 | /// When the deserealizer reads the data from the KML that uses <gx:Track> |
no test coverage detected