i have calculted route and then find mid vertex of the route using getpointonline method. now i want 2 lines from that midpoint
for example
line1 = startpoint.of route to midvertex
line = midvertex to endpoint of route
i use getlineonline method to get line
multilineshape line1 = new multilineshape();
line1 = routingResult.Route.GetLineOnALine(startPoint, midpoint);
it gives error
Cannot implicitly convert type 'ThinkGeo.MapSuite.Core.LineBaseShape' to 'ThinkGeo.MapSuite.Core.MultilineShape'. An explicit conversion exists (are you missing a cast?)