static
| 2678 | |
| 2679 | // static |
| 2680 | m2::AnyRectD TapInfo::GetDefaultTapRect(m2::PointD const & mercator, ScreenBase const & screen) |
| 2681 | { |
| 2682 | m2::AnyRectD result; |
| 2683 | double const halfSize = VisualParams::Instance().GetTouchRectRadius(); |
| 2684 | screen.GetTouchRect(screen.GtoP(mercator), halfSize, result); |
| 2685 | return result; |
| 2686 | } |
| 2687 | |
| 2688 | // static |
| 2689 | m2::AnyRectD TapInfo::GetBookmarkTapRect(m2::PointD const & mercator, ScreenBase const & screen) |
nothing calls this directly
no test coverage detected