This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void findShortestPath(PrintStream ps, long startNode, long endNode) { | |
try { | |
RouterService router = Initializer.getApplicationContext().getBean(RouterService.class); | |
router.emitShortestPathKML(ps, startNode, endNode); | |
} catch (Exception e) { | |
e.printStackTrace(); | |
} | |
} | |
public void emitShortestPathKML(PrintStream ps, long keyValueA, long keyValueB) |