| 76 | } |
| 77 | |
| 78 | void ColoredMarkPoint::SetRadius(float radius) |
| 79 | { |
| 80 | SetDirty(); |
| 81 | |
| 82 | auto const vs = static_cast<float>(df::VisualParams::Instance().GetVisualScale()); |
| 83 | m_coloredSymbols.m_zoomInfo.begin()->second.m_radiusInPixels = radius * vs; |
| 84 | } |
| 85 | |
| 86 | drape_ptr<df::UserPointMark::ColoredSymbolZoomInfo> ColoredMarkPoint::GetColoredSymbols() const |
| 87 | { |
no test coverage detected