Skip to content

Instantly share code, notes, and snippets.

@xivk
Created May 31, 2014 13:35
Show Gist options
  • Save xivk/2561f4a3b8452a09c439 to your computer and use it in GitHub Desktop.
Save xivk/2561f4a3b8452a09c439 to your computer and use it in GitHub Desktop.
Vehicle.RegisterVehicles();
var result = RoutingFacade.Calculate(Vehicle.Car,
new GeoCoordinate(-22.60101626185221, 17.081937789916992), new GeoCoordinate(-22.574389321905667, 17.07901954650879));
Console.WriteLine(result);
//var metrics = new TimeCalculator(new OsmRoutingInterpreter());
//metrics.Calculate(result);
var instructions = InstructionGenerator.Generate(result, new OsmRoutingInterpreter());
Console.ReadLine();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment