var mapElement = document.getElementById('googleMap');
// 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(42.338680, -78.460400),
map: map,
title: 'Tasfiu!',
icon: /cdn/shop/files/headerlogo_whitelarge_small.png?v=1613696974',
});
}