diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index debdc8b627..b8c5e8b5e5 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -597,6 +597,14 @@ void RoutingManager::RemoveRoutePoint(RouteMarkType type, int8_t intermediateInd routePoints.NotifyChanges(); } +void RoutingManager::RemoveRoutePoints() +{ + ASSERT(m_bmManager != nullptr, ()); + RoutePointsLayout routePoints(m_bmManager->GetUserMarksController(UserMarkType::ROUTING_MARK)); + routePoints.RemoveRoutePoints(); + routePoints.NotifyChanges(); +} + void RoutingManager::RemoveIntermediateRoutePoints() { ASSERT(m_bmManager != nullptr, ()); diff --git a/map/routing_manager.hpp b/map/routing_manager.hpp index 38bf06caac..983d8ad568 100644 --- a/map/routing_manager.hpp +++ b/map/routing_manager.hpp @@ -169,6 +169,7 @@ public: std::vector GetRoutePoints() const; size_t GetRoutePointsCount() const; void RemoveRoutePoint(RouteMarkType type, int8_t intermediateIndex = 0); + void RemoveRoutePoints(); void RemoveIntermediateRoutePoints(); void MoveRoutePoint(RouteMarkType currentType, int8_t currentIntermediateIndex, RouteMarkType targetType, int8_t targetIntermediateIndex); diff --git a/map/routing_mark.cpp b/map/routing_mark.cpp index 489e8447fc..1dde8ace63 100644 --- a/map/routing_mark.cpp +++ b/map/routing_mark.cpp @@ -226,6 +226,7 @@ bool RoutePointsLayout::RemoveRoutePoint(RouteMarkType type, int8_t intermediate return true; } +void RoutePointsLayout::RemoveRoutePoints() { m_routeMarks.Clear(); } void RoutePointsLayout::RemoveIntermediateRoutePoints() { for (size_t i = 0; i < m_routeMarks.GetUserMarkCount();) diff --git a/map/routing_mark.hpp b/map/routing_mark.hpp index 5a82b09500..2cdb501298 100644 --- a/map/routing_mark.hpp +++ b/map/routing_mark.hpp @@ -87,6 +87,7 @@ public: std::vector GetRoutePoints(); size_t GetRoutePointsCount() const; bool RemoveRoutePoint(RouteMarkType type, int8_t intermediateIndex = 0); + void RemoveRoutePoints(); void RemoveIntermediateRoutePoints(); bool MoveRoutePoint(RouteMarkType currentType, int8_t currentIntermediateIndex, RouteMarkType destType, int8_t destIntermediateIndex);