';// Create an info window for the first marker
const infowindow1 = new google.maps.InfoWindow({
content: contentString1,
});// Show info window when marker is hovered over
marker1.addListener("mouseover", () => {
infowindow1.open(map, marker1);
});// Hide info window when marker is not hovered over
marker1.addListener("mouseout", () => {
infowindow1.close();
});// The second marker
const marker2 = new google.maps.Marker({
position: manufacturePosition2,
map: map,
title: "Manufacture Location 2",
icon: "/wp-content/uploads/2024/05/pin.png",
});// Info window content for the second marker
const contentString2 = '
Manufacture 1
5200 Dixie Rd, Mississauga, ON L4W 1E4
';// Create an info window for the second marker
const infowindow2 = new google.maps.InfoWindow({
content: contentString2,
});// Show info window when marker is hovered over
marker2.addListener("mouseover", () => {
infowindow2.open(map, marker2);
});// Hide info window when marker is not hovered over
marker2.addListener("mouseout", () => {
infowindow2.close();
});
}