forked from organicmaps/organicmaps
Added deleting saved route points.
This commit is contained in:
parent
df70003804
commit
49154d7ea7
4 changed files with 17 additions and 0 deletions
|
@ -1450,4 +1450,10 @@ Java_com_mapswithme_maps_Framework_nativeSaveRoutePoints()
|
|||
{
|
||||
frm()->GetRoutingManager().SaveRoutePoints();
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_Framework_nativeDeleteSavedRoutePoints()
|
||||
{
|
||||
frm()->GetRoutingManager().DeleteSavedRoutePoints();
|
||||
}
|
||||
} // extern "C"
|
||||
|
|
|
@ -352,4 +352,5 @@ public class Framework
|
|||
public static native boolean nativeHasSavedRoutePoints();
|
||||
public static native boolean nativeLoadRoutePoints();
|
||||
public static native void nativeSaveRoutePoints();
|
||||
public static native void nativeDeleteSavedRoutePoints();
|
||||
}
|
||||
|
|
|
@ -1060,3 +1060,11 @@ void RoutingManager::SaveRoutePoints() const
|
|||
LOG(LWARNING, ("Saving road points failed:", ex.Msg()));
|
||||
}
|
||||
}
|
||||
|
||||
void RoutingManager::DeleteSavedRoutePoints()
|
||||
{
|
||||
if (!HasSavedRoutePoints())
|
||||
return;
|
||||
auto const fileName = GetPlatform().SettingsPathForFile(kRoutePointsFile);
|
||||
FileWriter::DeleteFileX(fileName);
|
||||
}
|
||||
|
|
|
@ -228,6 +228,8 @@ public:
|
|||
bool LoadRoutePoints();
|
||||
/// \brief It saves route points to file.
|
||||
void SaveRoutePoints() const;
|
||||
/// \brief It deletes file with saved route points if it exists.
|
||||
void DeleteSavedRoutePoints();
|
||||
|
||||
private:
|
||||
void InsertRoute(routing::Route const & route);
|
||||
|
|
Loading…
Add table
Reference in a new issue