| 88 | int32_t S2CellID::getLevel() const { return GoogleS2CellID(this->_id).level(); } |
| 89 | |
| 90 | uint8_t S2CellID::getFace() const { |
| 91 | return static_cast<uint8_t>(GoogleS2CellID(this->_id).face()); |
| 92 | } |
| 93 | |
| 94 | Cartographic S2CellID::getCenter() const { |
| 95 | S2LatLng ll = GoogleS2CellID(this->_id).ToLatLng(); |
no outgoing calls
no test coverage detected