Skip to content

Instantly share code, notes, and snippets.

@SpencerCooley
Created October 3, 2011 15:56
Show Gist options
  • Save SpencerCooley/1259441 to your computer and use it in GitHub Desktop.
Save SpencerCooley/1259441 to your computer and use it in GitHub Desktop.
$(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