Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yodasws/gtfs

Playing with Google Maps JavaScript API to provide browser user with an easier way for in depth examination of public transit information from GTFS.
https://github.com/yodasws/gtfs

google-maps-api gtfs

Last synced: 17 days ago
JSON representation

Playing with Google Maps JavaScript API to provide browser user with an easier way for in depth examination of public transit information from GTFS.

Awesome Lists containing this project

README

        

# Transit Information
Using GTFS to provide useful transit maps and information

## Cities/Areas
* [Charlotte, NC](https://yodasws.github.io/gtfs/#!/us/charlotte/)
* [Hakone, Japan](https://yodasws.github.io/gtfs/#!/jp/hakone/)
* [New York City](https://yodasws.github.io/gtfs/#!/us/new-york/)

## Cool/New JavaScript Used

* [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController)

to easily remove duplicate event listeners :+1:

* [`Web Workers API`](https://developer.mozilla.org/en-US/docs/Web/API/Worker)

to load files and compile data in separate threads, allowing work to be done in parallel without blocking the browser's main thread, preventing the page from freezing in the browser