Created
September 11, 2014 15:44
-
-
Save jasonlong/1c07931020c97b12652d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function initialize() { | |
var myLatlng = new google.maps.LatLng(51.501904,-0.115871); | |
var mapOptions = { | |
zoom: 13, | |
center: myLatlng | |
} | |
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); | |
var transitLayer = new google.maps.TransitLayer(); | |
transitLayer.setMap(map); | |
} | |
google.maps.event.addDomListener(window, 'load', initialize); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment