';
// Create an info window for Toronto
const torontoInfowindow = new google.maps.InfoWindow({
content: torontoContentString,
});// Show info window when marker is hovered over
marker2.addListener("mouseover", () => {
torontoInfowindow.open(map, marker2);
});// Hide info window when marker is not hovered over
marker2.addListener("mouseout", () => {
torontoInfowindow.close();
});
// The marker, positioned at Montreal
const marker3 = new google.maps.Marker({
position: position_montreal,
map: map,
title: "Montreal",
icon: "https://www.zipscreen.ca/wp-content/uploads/2024/05/pin.png",
});// Info window content for Montreal
const montrealContentString = '
Montreal
514-974-1258
378 Bd Saint-Luc, suite 200, Saint-Jean-sur-Richelieu, Quebec J2W 2A3
';
// Create an info window for Montreal
const montrealInfowindow = new google.maps.InfoWindow({
content: montrealContentString,
});// Show info window when marker is hovered over
marker3.addListener("mouseover", () => {
montrealInfowindow.open(map, marker3);
});// Hide info window when marker is not hovered over
marker3.addListener("mouseout", () => {
montrealInfowindow.close();
});
const marker4 = new google.maps.Marker({
position: position_calgary,
map: map,
title: "Calgary",
icon: "https://www.zipscreen.ca/wp-content/uploads/2024/05/pin.png",
});// Info window content for Montreal
const calgaryContentString = '
Calgary
403-275-8456
4427 Manitoba Road SE, Calgary, AB, T2G 4B9
';// Create an info window for Montreal
const calgaryInfowindow = new google.maps.InfoWindow({
content: calgaryContentString,
});// Show info window when marker is hovered over
marker4.addListener("mouseover", () => {
calgaryInfowindow.open(map, marker4);
});// Hide info window when marker is not hovered over
marker4.addListener("mouseout", () => {
calgaryInfowindow.close();
});const marker5 = new google.maps.Marker({
position: position_victoria,
map: map,
title: "Victoria",
icon: "https://www.zipscreen.ca/wp-content/uploads/2024/05/pin.png",
});// Info window content for Montreal
const victoriaContentString = '
Victoria
778-678-6661
2770 Leigh Rd, Unit 128, Victoria, BC, V9B 4G2
';
// Create an info window for Montreal
const victoriaInfowindow = new google.maps.InfoWindow({
content: victoriaContentString,
});// Show info window when marker is hovered over
marker5.addListener("mouseover", () => {
victoriaInfowindow.open(map, marker5);
});// Hide info window when marker is not hovered over
marker5.addListener("mouseout", () => {
victoriaInfowindow.close();
});
const marker6 = new google.maps.Marker({
position: position_winipeg,
map: map,
title: "Winipeg",
icon: "https://www.zipscreen.ca/wp-content/uploads/2024/05/pin.png",
});// Info window content for Montreal
const winipegContentString = '
';
// Create an info window for Montreal
const winipegInfowindow = new google.maps.InfoWindow({
content: winipegContentString,
});// Show info window when marker is hovered over
marker6.addListener("mouseover", () => {
winipegInfowindow.open(map, marker6);
});// Hide info window when marker is not hovered over
marker6.addListener("mouseout", () => {
winipegInfowindow.close();
});
}// A marker with a URL pointing to a PNG.
initMap();