Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mecatran/OpenTripPlanner-client-gwt
GWT client for OpenTripPlanner
https://github.com/mecatran/OpenTripPlanner-client-gwt
Last synced: 3 days ago
JSON representation
GWT client for OpenTripPlanner
- Host: GitHub
- URL: https://github.com/mecatran/OpenTripPlanner-client-gwt
- Owner: mecatran
- License: gpl-2.0
- Created: 2015-08-11T12:09:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-03-14T09:25:57.000Z (over 2 years ago)
- Last Synced: 2024-08-02T15:05:07.664Z (3 months ago)
- Language: Java
- Homepage:
- Size: 1.41 MB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-transit - OpenTripPlanner Client GWT - A Google Web Toolkit-based web interface for OpenTripPlanner (Uncategorized / Uncategorized)
README
# OpenTripPlanner-client-gwt
## Presentation
This project is an open-source client for [OpenTripPlanner](http://www.opentripplanner.org/) made using [GWT](http://www.gwtproject.org/).
It is released under the GPLv2 licence, see LICENSE file.
The interface is available for now only in English and French.
## Screenshot
![Screenshot](http://mecatran.github.io/OpenTripPlanner-client-gwt/img/screenshot1.png)## Building
Modify the settings in `src/main/webapp/index.html` (router ID and URL to the OpenTripPlanner server, mainly).
Compile the project with:
$ mvn package
Open `target/opentripplanner-gwt-client-VERSION/index.html` in a browser. That's it!
## Debug / develop
To use GWT super-dev mode, compile the project with maven (`mvn package`) as a boot-strap.
Then import the project in your IDE of choice (let's say Eclipse, import > maven).
Create a new launch configuration with the following parameters:
* Main class: `com.google.gwt.dev.codeserver.CodeServer`
* Program arguments: `com.mecatran.otp.gwt.OpenTripPlannerClient`
* VM arguments: `-Xmx512M`
* JRE > 1.7
* Classpath:
* Add the GWT library to bootstrap entries
* Add `src/main` and `src/resources` as user entries (Advanced... button)Start the configuration you just launched, and visit the URL it gives on the console.