diff --git a/kml/serdes.cpp b/kml/serdes.cpp index 82a37367cd..0f74787e53 100644 --- a/kml/serdes.cpp +++ b/kml/serdes.cpp @@ -605,14 +605,14 @@ void KmlParser::ParseColor(std::string const & value) m_color = ToRGBA(fromHex[3], fromHex[2], fromHex[1], fromHex[0]); } -bool KmlParser::GetColorForStyle(std::string const & styleUrl, uint32_t & color) +bool KmlParser::GetColorForStyle(std::string const & styleUrl, uint32_t & color) const { if (styleUrl.empty()) return false; // Remove leading '#' symbol auto const it = m_styleUrl2Color.find(styleUrl.substr(1)); - if (it != m_styleUrl2Color.end()) + if (it != m_styleUrl2Color.cend()) { color = it->second; return true; @@ -620,6 +620,19 @@ bool KmlParser::GetColorForStyle(std::string const & styleUrl, uint32_t & color) return false; } +double KmlParser::GetTrackWidthForStyle(std::string const & styleUrl) const +{ + if (styleUrl.empty()) + return kDefaultTrackWidth; + + // Remove leading '#' symbol + auto const it = m_styleUrl2Width.find(styleUrl.substr(1)); + if (it != m_styleUrl2Width.cend()) + return it->second; + + return kDefaultTrackWidth; +} + bool KmlParser::Push(std::string const & name) { m_tags.push_back(name); @@ -701,12 +714,18 @@ void KmlParser::Pop(std::string const & tag) if (!m_styleId.empty()) { m_styleUrl2Color[m_styleId] = m_color; + m_styleUrl2Width[m_styleId] = m_trackWidth; m_color = 0; + m_trackWidth = kDefaultTrackWidth; } } } - else if (tag == "mwm:additionalLineStyle" || tag == "LineStyle") + else if ((tag == "LineStyle" && m_tags.size() > 2 && GetTagFromEnd(2) == kPlacemark) || + (tag == "mwm:additionalLineStyle" && m_tags.size() > 3 && GetTagFromEnd(3) == kPlacemark)) { + // This code assumes that