| 74 | } |
| 75 | |
| 76 | bool TileKey::EqualStrict(TileKey const & other) const |
| 77 | { |
| 78 | return m_x == other.m_x && m_y == other.m_y && m_zoomLevel == other.m_zoomLevel && |
| 79 | m_generation == other.m_generation && m_userMarksGeneration == other.m_userMarksGeneration; |
| 80 | } |
| 81 | |
| 82 | m2::RectD TileKey::GetGlobalRect(bool clipByDataMaxZoom) const |
| 83 | { |
no outgoing calls
no test coverage detected