| 140 | } |
| 141 | |
| 142 | std::string Edge::PrintLatLon() const |
| 143 | { |
| 144 | return "{ " + DebugPrint(mercator::ToLatLon(GetStartPoint())) + ", " + DebugPrint(mercator::ToLatLon(GetEndPoint())) + |
| 145 | " }"; |
| 146 | } |
| 147 | // IRoadGraph::RoadInfo -------------------------------------------------------- |
| 148 | |
| 149 | IRoadGraph::RoadInfo::RoadInfo() : m_speedKMPH(0.0), m_bidirectional(false) {} |
no test coverage detected