I just built an offline map on android using osmdroid.
I'm able to draw Polylines over offline tiles using my stored waypoints.
ArrayList<GeoPoint> waypoints = my_waypoints_from_json;
RoadManager roadManager = new OSRMRoadManager(m_activity);
road = roadManager.getRoad(waypoints);
Polylines roadOverlay = RoadManager.buildRoadOverlay(road, m_activity);
Is it possible to draw offline route between two location ? ( If i'm using map in offline mode and I want to draw line from source to destination. )