forked from organicmaps/organicmaps
[MAPSME-5030] Added RemoveRoutePoint to RoutingManager.
This commit is contained in:
parent
6bf40820d5
commit
d346182b01
4 changed files with 11 additions and 0 deletions
|
@ -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, ());
|
||||
|
|
|
@ -169,6 +169,7 @@ public:
|
|||
std::vector<RouteMarkData> 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);
|
||||
|
|
|
@ -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();)
|
||||
|
|
|
@ -87,6 +87,7 @@ public:
|
|||
std::vector<RouteMarkPoint *> 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);
|
||||
|
|
Loading…
Add table
Reference in a new issue