// When the window has finished loading create our google map below
// Basic options for a simple Google Map
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
// How zoomed in you want the map to start at (always required)
// The latitude and longitude to center the map (always required)
center: new google.maps.LatLng(-33.752586, 151.286888), // New York
// How you would like to style the map.
// This is where you would paste any style found on Snazzy Maps.
// Get the HTML DOM element that will contain your map
// We are using a div with id="map" seen below in the
// Create the Google Map using our element and options defined above
// Let's also add a marker while we're at it