I am trying to use routing optimization without map. I have following line of code :
Dim routingResult As RoutingResult = routingEngine.GetRoute(startPoint, stopPoints, ITERATIONS_COUNT)
After that I want to process result further, ie to access the list of its segment points. I see that routingResult.RoutingSegments list items do not contain any valuable data.
I also see that routingResult.Features list items contain information about point coordinates, but only in WKT format, returned by ToString() method. So, my question is : is there more elegant way to access those coordinates in routing result, or should I really parse those WKT strings ?
thanks