| 142 | } |
| 143 | |
| 144 | std::string TileKey::Coord2String() const |
| 145 | { |
| 146 | return strings::to_string(m_x) + ' ' + strings::to_string(m_y) + ' ' + strings::to_string(int(m_zoomLevel)); |
| 147 | } |
| 148 | |
| 149 | std::string DebugPrint(TileKey const & key) |
| 150 | { |
no test coverage detected