| 147 | } |
| 148 | |
| 149 | static std::string ToString(geometry::PointWithAltitude const & ptWithAlt) |
| 150 | { |
| 151 | auto const latLon = mercator::ToLatLon(ptWithAlt.GetPoint()); |
| 152 | std::ostringstream out; |
| 153 | out << "[" |
| 154 | << "point:" << LatLonToString(latLon) << ", " |
| 155 | << "altitude:" << ptWithAlt.GetAltitude() << "]"; |
| 156 | return out.str(); |
| 157 | } |
| 158 | }; |
| 159 | |
| 160 | struct PropertiesAdapter |
nothing calls this directly
no test coverage detected