As with my old subway map, the most difficult parts of creating the new map didn’t involve any programming. The hardest and most time-consuming part by far was cleaning the TTC ride guide and projecting it onto … Read more
About a year ago I played around with the Google Maps API and created a map containing the TTC subway system. It wasn’t intended to be all that useful as the TTC’s own map contains much more information. Still, that didn’t stop my map from … Read more
I just spent a few minutes factoring out my TTC subway map Javascript code so that it can be called to insert the TTC subway into any Google Map:
<div id=”map”> <script src=”http://crazedmonkey.com/ttcgooglemap/ttcgooglemaps.js” type=”text/javascript”></script> <script type=”text/javascript”> <!– var map = new GMap( document.getElementById( “map” ) ); map.addControl( new … Read more
To make stations on my TTC subway map easier to locate, I have added an alphabetical, clickable list of subway stations, colour-coded by subway line. Enjoy.
I spent a little time this weekend playing with the Google Maps API and creating an overlay of the TTC subway. Not surprisingly, creating the station markers and route lines was easy. The most difficult part, however, was obtaining a list of subway stations and their addresses in a text format for easy … Read more