Package org.opentripplanner.visualizer

Examples of org.opentripplanner.visualizer.GraphVisualizer


                configurator.makeGraphService(graphBuilder.getGraph());
            }
        }
       
        // start visualizer, if asked for
        GraphVisualizer graphVisualizer = configurator.visualizerFromParameters();
        if (graphVisualizer != null) {
            graphVisualizer.run();
        }
       
        // start web server, if asked for
        GrizzlyServer grizzlyServer = configurator.serverFromParameters();
        if (grizzlyServer != null) {
View Full Code Here


   
    public GraphVisualizer visualizerFromParameters() {
        if (params.visualize) {
            // FIXME get OTPServer into visualizer.
            getServer();
            GraphVisualizer visualizer = new GraphVisualizer(getGraphService());
            return visualizer;
        } else return null;
    }
View Full Code Here

TOP

Related Classes of org.opentripplanner.visualizer.GraphVisualizer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.