| 3209 | } |
| 3210 | |
| 3211 | std::optional<m2::PointD> Framework::GetCurrentPosition() const |
| 3212 | { |
| 3213 | auto const & myPosMark = GetBookmarkManager().MyPositionMark(); |
| 3214 | if (!myPosMark.HasPosition()) |
| 3215 | return {}; |
| 3216 | return myPosMark.GetPivot(); |
| 3217 | } |
| 3218 | |
| 3219 | bool Framework::ParseSearchQueryCommand(search::SearchParams const & params) |
| 3220 | { |
no test coverage detected