| 829 | } |
| 830 | |
| 831 | m2::PointD MyPositionController::GetDrawablePosition() |
| 832 | { |
| 833 | m2::PointD position; |
| 834 | if (AnimationSystem::Instance().GetArrowPosition(position)) |
| 835 | { |
| 836 | m_isPendingAnimation = false; |
| 837 | return position; |
| 838 | } |
| 839 | |
| 840 | if (m_isPendingAnimation) |
| 841 | return m_oldPosition; |
| 842 | |
| 843 | return m_position; |
| 844 | } |
| 845 | |
| 846 | double MyPositionController::GetDrawableAzimut() |
| 847 | { |
no test coverage detected