| 696 | } |
| 697 | |
| 698 | void KmlParser::SetOrigin(std::string const & s) |
| 699 | { |
| 700 | m_geometryType = GEOMETRY_TYPE_POINT; |
| 701 | |
| 702 | m2::PointD pt; |
| 703 | if (ParsePoint(s, ", \n\r\t", pt)) |
| 704 | m_org = pt; |
| 705 | } |
| 706 | |
| 707 | void KmlParser::ParseAndAddPoints(MultiGeometry::LineT & line, std::string_view s, char const * blockSeparator, |
| 708 | char const * coordSeparator) |
nothing calls this directly
no test coverage detected