Created
October 3, 2011 15:56
-
-
Save SpencerCooley/1259441 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
$(document).ready(function(){ | |
//creating an object literal containing the properties | |
var options = { | |
zoom: 3, | |
center: new google.maps.LatLng(37.09, -95.71), | |
mapTypeId: google.maps.MapTypeId.ROADMAP | |
}; | |
//creating the map | |
var map = new google.maps.Map(document.getElementById('map'), options); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment