| 28 | } |
| 29 | |
| 30 | std::optional<m2::PointD> FeatureMakerSimple::ReadNode(uint64_t id) const |
| 31 | { |
| 32 | m2::PointD res; |
| 33 | if (m_cache->GetNode(id, res.y, res.x)) |
| 34 | return res; |
| 35 | return {}; |
| 36 | } |
| 37 | |
| 38 | std::optional<m2::PointD> FeatureMakerSimple::GetOrigin(OsmElement const & e) const |
| 39 | { |