| 24 | {"placemark-bluegray", "BookmarkBlueGray"}}; |
| 25 | |
| 26 | std::string GetSupportedStyle(std::string const & style) |
| 27 | { |
| 28 | auto const it = kStyleToColor.find(style); |
| 29 | if (it == kStyleToColor.cend()) |
| 30 | return "BookmarkGreen"; |
| 31 | return it->second; |
| 32 | } |
| 33 | } // namespace style |
| 34 | |
| 35 | ApiMarkPoint::ApiMarkPoint(m2::PointD const & ptOrg) : UserMark(ptOrg, UserMark::Type::API) {} |
no test coverage detected