var mapElement = document.getElementById('map');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
// Let's also add a marker while we're at it
var marker = new google.maps.Marker({
position: new google.maps.LatLng(48.430387, -123.3617373),
map: map,
title: '101-1814 Vancouver Street, Victoria, BC V8T 5E3'
});
}