const mapElement = document.getElementById('the-map');
// Create the Google Map using our element and options defined above
const map = new google.maps.Map(mapElement, mapOptions);
const contentString = '
' +
'
' +
'
VAB
' +
'
220 E 42nd Street
' +
'
NY, NY 10017
' +
'
';
'
';
const infowindow = new google.maps.InfoWindow({
content: contentString
});
// Let's also add a marker while we're at it
var marker = new google.maps.Marker({
position: new google.maps.LatLng(40.756380, -73.970920),
map: map,
icon: '/assets/images/pin.png'
});
marker.addListener('click', function() {
infowindow.open(map, marker);
});
}