| 196 | } |
| 197 | |
| 198 | void XMLFeature::SetCenter(ms::LatLon const & ll) |
| 199 | { |
| 200 | ASSERT_EQUAL(GetType(), Type::Node, ()); |
| 201 | SetAttribute("lat", strings::to_string_dac(ll.m_lat, kLatLonTolerance)); |
| 202 | SetAttribute("lon", strings::to_string_dac(ll.m_lon, kLatLonTolerance)); |
| 203 | } |
| 204 | |
| 205 | void XMLFeature::SetCenter(m2::PointD const & mercatorCenter) |
| 206 | { |