| 133 | m2::RectD GetLimitRect() { return m_feature->GetLimitRect(FeatureType::BEST_GEOMETRY); } |
| 134 | |
| 135 | void ParseAll() |
| 136 | { |
| 137 | // FeatureType is a lazy data loader, but it can cache all data. |
| 138 | // We need to run all methods to store data into cache. |
| 139 | GetIndex(); |
| 140 | GetTypes(); |
| 141 | GetMetadata(); |
| 142 | GetNames(); |
| 143 | GetReadableName(); |
| 144 | GetRank(); |
| 145 | GetPopulation(); |
| 146 | GetRoadNumber(); |
| 147 | GetHouseNumber(); |
| 148 | GetLayer(); |
| 149 | GetGeomType(); |
| 150 | GetGeometry(); |
| 151 | GetCenter(); |
| 152 | GetLimitRect(); |
| 153 | } |
| 154 | |
| 155 | std::string DebugString() { return m_feature->DebugString(); } |
| 156 |
no test coverage detected