/* * Create an array of styles. */ var blueOceanStyles = [ { stylers: [ { hue: "#ab7d00" }, { lightness: 0 }, { visibility: "on" } ] } ]; var blueMapStyles = [ { stylers: [ { visibility: "on" }, { weight: 0.2 }, { hue: "#ffd200" }, { saturation: 50 } ] } ]; /* * create map */ var map = new google.maps.Map(document.getElementById("map_div"), { center: new google.maps.LatLng(47.9322420, -73.8490111), zoom: 6, mapTypeId: google.maps.MapTypeId.ROADMAP }); /* * use google maps api built-in mechanism to attach dom events */ google.maps.event.addDomListener(window, "load", function () { /* * Associate the styled map with the MapTypeId and set it to display. */ map.setOptions({styles: blueOceanStyles}); /* * create infowindow (which will be used by markers) */ var infoWindow = new google.maps.InfoWindow(); /* * Event that closes the Info Window with a click on the map */ google.maps.event.addListener(map, 'click', function() { infoWindow.close(); }); /* * marker creater function (acts as a closure for html parameter) */ function createMarker(options, html) { var marker = new google.maps.Marker(options); if (html) { google.maps.event.addListener(marker, "click", function () { infoWindow.setContent(html); infoWindow.open(options.map, this); }); } return marker; } /* * add markers to map */ var contentString = '
' + '
IGA #8035
' + '

10250 ch Ste-Marguerite
' + 'Trois Rivieres, QC  G9B 6M4

' + '
'; var marker1 = createMarker({ position: new google.maps.LatLng(46.2942287, -72.6693055), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

421 12e Av E
' + 'Amos, QC  J9T 3H1

' + '
'; var marker2 = createMarker({ position: new google.maps.LatLng(48.5678806, -78.1036579), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Coop
' + '

291 6e Rue O
' + 'Amos, QC  J9T 2V6

' + '
'; var marker3 = createMarker({ position: new google.maps.LatLng(48.5674067, -78.1321678), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

7150 Boul Langelier
' + 'Saint-Léonard, QC  H1S 2X6

' + '
'; var marker4 = createMarker({ position: new google.maps.LatLng(45.5894788, -73.5692165), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

380 Boulevard Curé-Labelle
' + 'Sainte-Rose, QC  H7L 4T7

' + '
'; var marker5 = createMarker({ position: new google.maps.LatLng(45.5933107, -73.7864476), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

455 Boulevard Jean-Paul-Vincent
' + 'Longueuil, QC  J4G 1R3

' + '
'; var marker6 = createMarker({ position: new google.maps.LatLng(45.5658035, -73.4798175), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

9105 Boulevard Taschereau
' + 'Brossard, QC  J4Y 3B8

' + '
'; var marker7 = createMarker({ position: new google.maps.LatLng(45.4365831, -73.4730399), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

640 Boulevard Jacques-Bizard
' + 'Île-Bizard, QC  H9C 2H2

' + '
'; var marker8 = createMarker({ position: new google.maps.LatLng(45.4951986, -73.8779688), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Supermarché
' + '

6060 Boulevard Jean-XXIII
' + 'Trois-Rivières, QC  G8Z 4B5

' + '
'; var marker9 = createMarker({ position: new google.maps.LatLng(46.3313413, -72.5955011), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Terrebonne
' + '

2120 Chemin Gascon
' + 'Terrebonne, QC  J6X 3A1

' + '
'; var marker10 = createMarker({ position: new google.maps.LatLng(45.7211135, -73.6619591), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

3 Rue Raymond
' + 'Sainte-Agathe-des-Monts, QC  J8C 2X2

' + '
'; var marker11 = createMarker({ position: new google.maps.LatLng(46.0472187, -74.2779880), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Bilodeau
' + '

760 10e Avenue
' + 'Senneterre, QC  J0Y 2M0

' + '
'; var marker12 = createMarker({ position: new google.maps.LatLng(48.3900179, -77.2454460), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Bouchard
' + '

6185, Chemin de St-Élie
' + 'Sherbrooke, QC  J1R 0L1

' + '
'; var marker13 = createMarker({ position: new google.maps.LatLng(45.3944129, -72.0138356), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #8393
' + '

1177, 8e Rue
' + 'Val-d\'Or, QC  J9P 1R1

' + '
'; var marker14 = createMarker({ position: new google.maps.LatLng(48.1025018, -77.7857688), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Magasin
' + '

355 Rue Saint Jean Baptiste S
' + 'Princeville, QC  G6L 5A4

' + '
'; var marker15 = createMarker({ position: new google.maps.LatLng(46.1697974, -71.8704258), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA du Campanile
' + '

3700 Rue du Campanile
' + 'Québec, QC  G1X 4G6

' + '
'; var marker16 = createMarker({ position: new google.maps.LatLng(46.7619546, -71.3338411), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8262
' + '

10 Boulevard Saint Pierre E
' + 'Caraquet, NB  E1W 1B6

' + '
'; var marker17 = createMarker({ position: new google.maps.LatLng(47.7941015, -64.9366453), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

561 Rue Racine
' + 'Québec, QC  G2B 1G3

' + '
'; var marker18 = createMarker({ position: new google.maps.LatLng(46.8446450, -71.3661102), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

1450 Rue Royale
' + 'Malartic, QC  J0Y 1Z0

' + '
'; var marker19 = createMarker({ position: new google.maps.LatLng(48.1456300, -78.1256673), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Supermarché #569
' + '

1155 Rue Jarry E
' + 'Montréal, QC  H2P 1W9

' + '
'; var marker20 = createMarker({ position: new google.maps.LatLng(45.5488993, -73.6247663), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

6190 Boul Henri-Bourassa E
' + 'Montréal-Nord, QC  H1G 5X3

' + '
'; var marker21 = createMarker({ position: new google.maps.LatLng(45.6063138, -73.6114849), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8550
' + '

1248 Boulevard la Vérendrye E
' + 'Gatineau, QC  J8P 0A9

' + '
'; var marker22 = createMarker({ position: new google.maps.LatLng(45.5017864, -75.6348342), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

720 Montée Paiement
' + 'Gatineau, QC  J8R 4A3

' + '
'; var marker23 = createMarker({ position: new google.maps.LatLng(45.5034855, -75.6764426), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Shawinigan
' + '

1500 rue Trudel
' + 'Shawinigan, QC  G9N 0A2

' + '
'; var marker24 = createMarker({ position: new google.maps.LatLng(46.5569382, -72.7468576), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

1535 Boulevard le Corbusier
' + 'Laval, QC  H7S 1Z3

' + '
'; var marker25 = createMarker({ position: new google.maps.LatLng(45.5628390, -73.7268864), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

5680 Boulevard des Laurentides
' + 'Laval, QC  H7K 2K2

' + '
'; var marker26 = createMarker({ position: new google.maps.LatLng(45.6280443, -73.7527590), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

8130 Boulevard Champlain
' + 'LaSalle, QC  H8P 1B4

' + '
'; var marker27 = createMarker({ position: new google.maps.LatLng(45.4257273, -73.6120426), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #618
' + '

1000 Boulevard Vachon N
' + 'Sainte-Marie, QC  G6E 1M2

' + '
'; var marker28 = createMarker({ position: new google.maps.LatLng(46.4505930, -71.0297653), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8311
' + '

130 Chemin du Lac-Millette
' + 'Saint-Sauveur, QC  J0R 1R6

' + '
'; var marker29 = createMarker({ position: new google.maps.LatLng(45.8983792, -74.1460219), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8745
' + '

1801 3e Avenue
' + 'Val-d\'Or, QC  J9P 5K1

' + '
'; var marker30 = createMarker({ position: new google.maps.LatLng(48.0959709, -77.8267904), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8582
' + '

1130 Boulevard Saint-Joseph
' + 'Gatineau, QC  J8Z 1T3

' + '
'; var marker31 = createMarker({ position: new google.maps.LatLng(45.4723579, -75.7380468), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

249 Boulevard Harwood
' + 'Vaudreuil-Dorion, QC  J7V 1Y3

' + '
'; var marker32 = createMarker({ position: new google.maps.LatLng(45.3828948, -74.0154713), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

2137 Boulevard Curé-Labelle
' + 'Laval, QC  H7T 1L4

' + '
'; var marker33 = createMarker({ position: new google.maps.LatLng(45.5566277, -73.7646691), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

1526 Rue Sherbrooke
' + 'Magog, QC  J1X 2T3

' + '
'; var marker34 = createMarker({ position: new google.maps.LatLng(45.2738201, -72.1318581), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

203 Boul des Grives
' + 'Gatineau, QC  J9A 0C7

' + '
'; var marker35 = createMarker({ position: new google.maps.LatLng(45.4321316, -75.7793383), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

400 Boulevard du Séminaire N
' + 'Saint-Jean-sur-Richelieu, QC  J3B 5L2

' + '
'; var marker36 = createMarker({ position: new google.maps.LatLng(45.3117082, -73.2668669), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

3950 Rue King Ouest
' + 'Sherbrooke, QC  J1L 1P6

' + '
'; var marker37 = createMarker({ position: new google.maps.LatLng(45.3879477, -71.9576078), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

307 Boulevard Cartier O
' + 'Laval, QC  H7N 2J1

' + '
'; var marker38 = createMarker({ position: new google.maps.LatLng(45.5575199, -73.6988180), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

5555 Boulevard des Gradins
' + 'Québec, QC  G2J 1C8

' + '
'; var marker39 = createMarker({ position: new google.maps.LatLng(46.8397449, -71.2776098), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

5005 Boulevard de l\'Ormière
' + 'Québec, QC  G1P 1K6

' + '
'; var marker40 = createMarker({ position: new google.maps.LatLng(46.8194406, -71.3345724), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

780 Boulevard Frontenac E
' + 'Thetford Mines, QC  G6G 6H1

' + '
'; var marker41 = createMarker({ position: new google.maps.LatLng(46.1107641, -71.3004857), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8618
' + '

1910 Boulevard Saint-Joseph
' + 'Drummondville, QC  J2B 1R2

' + '
'; var marker42 = createMarker({ position: new google.maps.LatLng(45.8781020, -72.4859989), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

3925 Boulevard des Forges
' + 'Trois-Rivières, QC  G8Y 1V9

' + '
'; var marker43 = createMarker({ position: new google.maps.LatLng(46.3546751, -72.5847525), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

3315 Chemin de Chambly
' + 'Longueuil, QC  J4L 4K5

' + '
'; var marker44 = createMarker({ position: new google.maps.LatLng(45.5166709, -73.4481007), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

8980 Boulevard Lacroix
' + 'Saint-Georges, QC  G5Y 2B5

' + '
'; var marker45 = createMarker({ position: new google.maps.LatLng(46.1297371, -70.6955601), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #444
' + '

1060 Boulevard Guillaume-Couture
' + 'Lévis, QC  G6W 0R8

' + '
'; var marker46 = createMarker({ position: new google.maps.LatLng(46.7309518, -71.2674399), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

411 Boulevard Poliquin
' + 'Sorel-Tracy, QC  J3P 7V9

' + '
'; var marker47 = createMarker({ position: new google.maps.LatLng(46.0260666, -73.0973927), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

5000 Rue Jean-Talon
' + 'Saint-Léonard, QC  H1S 1K6

' + '
'; var marker48 = createMarker({ position: new google.maps.LatLng(45.5749429, -73.5828143), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

200 Rue de Strasbourg
' + 'Candiac, QC  J5R 0B4

' + '
'; var marker49 = createMarker({ position: new google.maps.LatLng(45.3728518, -73.5112297), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

455 Boulevard Gréber
' + 'Gatineau, QC  J8T 5T7

' + '
'; var marker50 = createMarker({ position: new google.maps.LatLng(45.4871101, -75.7014465), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

3450 Rue Queen
' + 'Rawdon, QC  J0K 1S0

' + '
'; var marker51 = createMarker({ position: new google.maps.LatLng(46.0380458, -73.6996479), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5445 Boulevard Laurier O
' + 'Saint-Hyacinthe, QC  J2S 3V6

' + '
'; var marker52 = createMarker({ position: new google.maps.LatLng(45.6046126, -72.9801636), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8629
' + '

105 Chemin Senator
' + 'Rouyn-Noranda, QC  J9X 1P1

' + '
'; var marker53 = createMarker({ position: new google.maps.LatLng(48.2408685, -79.0435212), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #529
' + '

1085 Boulevard Roland-Godard
' + 'Saint-Jérôme, QC  J7Y 4C4

' + '
'; var marker54 = createMarker({ position: new google.maps.LatLng(45.7954261, -74.0274404), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

2600 Rue Ontario E
' + 'Montréal, QC  H2K 4K4

' + '
'; var marker55 = createMarker({ position: new google.maps.LatLng(45.5339004, -73.5508954), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #282
' + '

110 Boulevard Don-Quichotte
' + 'L\'Île-Perrot, QC  J7V 6L7

' + '
'; var marker56 = createMarker({ position: new google.maps.LatLng(45.3868326, -73.9610288), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA extra #8559
' + '

25 Boulevard des Entreprises
' + 'Boisbriand, QC  J7G 3K6

' + '
'; var marker57 = createMarker({ position: new google.maps.LatLng(45.6264150, -73.8254220), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Supermarché
' + '

420 2e Avenue
' + 'Saint-Jean-sur-Richelieu, QC  J2X 2B8

' + '
'; var marker58 = createMarker({ position: new google.maps.LatLng(45.3044545, -73.2312338), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

7151 Chemin de la Côte-Saint-Luc
' + 'Côte Saint-Luc, QC  H4V 1J2

' + '
'; var marker59 = createMarker({ position: new google.maps.LatLng(45.4649005, -73.6550622), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

44 Rue Principale N
' + 'Sutton, QC  J0E 2K0

' + '
'; var marker60 = createMarker({ position: new google.maps.LatLng(45.1102394, -72.6158806), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

412 Rte 117
' + 'Mont-Tremblant, QC  J8E 2X5

' + '
'; var marker61 = createMarker({ position: new google.maps.LatLng(46.1173347, -74.5726439), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

490 28e Avenue
' + 'Lachine, QC  H8S 3Z4

' + '
'; var marker62 = createMarker({ position: new google.maps.LatLng(45.4374201, -73.6872191), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

675 Boulevard des Seigneurs
' + 'Terrebonne, QC  J6W 1T5

' + '
'; var marker63 = createMarker({ position: new google.maps.LatLng(45.7036451, -73.6360181), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Marchés Lambert et frères
' + '

23 Boulevard Seigneurial O
' + 'Saint-Bruno-de-Montarville, QC  J3V 2G9

' + '
'; var marker64 = createMarker({ position: new google.maps.LatLng(45.5242950, -73.3398799), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

2400 Boulevard du Millénaire
' + 'Saint-Basile-le-Grand, QC  J3N 1T8

' + '
'; var marker65 = createMarker({ position: new google.maps.LatLng(45.5235215, -73.3028492), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

3500 Boulevard Fréchette
' + 'Chambly, QC  J3L 6Z6

' + '
'; var marker66 = createMarker({ position: new google.maps.LatLng(45.4404752, -73.2887651), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi La Plaine
' + '

7201 Boulevard Laurier
' + 'La Plaine, QC  J7M 1V9

' + '
'; var marker67 = createMarker({ position: new google.maps.LatLng(45.7672239, -73.7275488), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Mascouche
' + '

1100 Montée Masson
' + 'Mascouche, QC  J7K 2L8

' + '
'; var marker68 = createMarker({ position: new google.maps.LatLng(45.7488713, -73.6067047), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Terrebonne, Moody
' + '

1345 Boul. Moody
' + 'Terrebonne, QC  J6W 3L1

' + '
'; var marker69 = createMarker({ position: new google.maps.LatLng(45.7047518, -73.6477689), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Terrebonne, Gascon
' + '

2260 Chemin Gascon
' + 'Terrebonne, QC  J6X 3A5

' + '
'; var marker70 = createMarker({ position: new google.maps.LatLng(45.7223547, -73.6636799), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Supermarche Famille Picard
' + '

2020 QC-112
' + 'Saint-Césaire, QC  J0L 1T0

' + '
'; var marker71 = createMarker({ position: new google.maps.LatLng(45.4147127, -73.0117020), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA des Chenaux Famille Paquette
' + '

6600 Rue des Alpes
' + 'Trois-Rivières, QC  G9C 0K8

' + '
'; var marker72 = createMarker({ position: new google.maps.LatLng(46.3545666, -72.6183503), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra St-Pierre et Fils
' + '

585 Rue Saint-Hubert
' + 'Granby, QC  J2H 1Y5

' + '
'; var marker73 = createMarker({ position: new google.maps.LatLng(45.4231409, -72.7253315), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Marché du Faubourg Greenfield Park inc.
' + '

300 Avenue Auguste
' + 'Greenfield Park, QC  J4V 3R4

' + '
'; var marker74 = createMarker({ position: new google.maps.LatLng(45.4860706, -73.4649375), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Tellier
' + '

3557 boulevard Dagenais O
' + 'Laval, QC  H7P 4X4

' + '
'; var marker75 = createMarker({ position: new google.maps.LatLng(45.5775666, -73.8122691), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Daigle
' + '

220 rue St-Charles
' + 'Ste-Thérese, QC  J7E 2B4

' + '
'; var marker76 = createMarker({ position: new google.maps.LatLng(45.6451900, -73.8598973), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marche Faubourg Pl. J.Cartier
' + '

1401 chemin de Chambly
' + 'Longueuil, QC  J4J 3X6

' + '
'; var marker77 = createMarker({ position: new google.maps.LatLng(45.5323983, -73.4844522), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra #8530
' + '

1315 boulevard Iberville
' + 'Repentigny, QC  J5Y 4B8

' + '
'; var marker78 = createMarker({ position: new google.maps.LatLng(45.7842388, -73.4130703), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Lamoureux
' + '

3765 Chemin d\'Oka
' + 'Saint-Joseph-du-Lac, QC  J0N 1M0

' + '
'; var marker79 = createMarker({ position: new google.maps.LatLng(45.5142430, -73.9774492), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Berthier
' + '

860 avenue Gabriel-Brissette
' + 'Berthierville, QC  J0K 1A0

' + '
'; var marker80 = createMarker({ position: new google.maps.LatLng(46.0873077, -73.1973400), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Daigle
' + '

450 rue Blainville Est
' + 'Ste-Thérese, QC  J7E 1N9

' + '
'; var marker81 = createMarker({ position: new google.maps.LatLng(45.6433407, -73.8158764), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Lord
' + '

2012 rue St-Georges
' + 'St-Jérôme, QC  J7Y 1M8

' + '
'; var marker82 = createMarker({ position: new google.maps.LatLng(45.7958085, -74.0063271), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA St-Lambert
' + '

371 avenue Victoria
' + 'St-Lambert, QC  J4P 2H7

' + '
'; var marker83 = createMarker({ position: new google.maps.LatLng(45.5025078, -73.5145492), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

180 Boulevard Brien
' + 'Repentigny, QC  J6A 7E9

' + '
'; var marker84 = createMarker({ position: new google.maps.LatLng(45.7466418, -73.4630257), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Crevier l\'Assomption
' + '

860 Boulevard de l\'Ange Gardien N
' + 'L\'Assomption, QC  J5W 1P1

' + '
'; var marker85 = createMarker({ position: new google.maps.LatLng(45.8411943, -73.4151227), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

17 rue Gauthier N
' + 'Notre-Dame-des-Prairies, QC  J6E 1T7

' + '
'; var marker86 = createMarker({ position: new google.maps.LatLng(46.0348100, -73.4354016), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Rainville
' + '

3100 Rue Henri-L.-Chevrette
' + 'Saint-Félix-de-Valois, QC  J0K 2M0

' + '
'; var marker87 = createMarker({ position: new google.maps.LatLng(46.1668102, -73.4405736), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Jasmin
' + '

1300 Boulevard de Sainte-Adèle
' + 'Ste-Adèle, QC  J8B 2N5

' + '
'; var marker88 = createMarker({ position: new google.maps.LatLng(45.9634763, -74.1534890), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA St-Canut
' + '

9600 rue Henri-Piché
' + 'Mirabel, QC  J7N 0T4

' + '
'; var marker89 = createMarker({ position: new google.maps.LatLng(45.7032911, -74.0898930), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Clément Louiseville
' + '

714 Boulevard Saint Laurent O
' + 'Louiseville, QC  J5V 1K7

' + '
'; var marker90 = createMarker({ position: new google.maps.LatLng(46.2564297, -72.9538517), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Albert
' + '

465 avenue Béthany
' + 'Lachute, QC  J8H 4H3

' + '
'; var marker91 = createMarker({ position: new google.maps.LatLng(45.6411350, -74.3272838), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

81 Chemin de Lavaltrie
' + 'Lavaltrie, QC  J5T 2H5

' + '
'; var marker92 = createMarker({ position: new google.maps.LatLng(45.8921253, -73.2957160), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Quintal
' + '

4805 Boulevard Arthur-Sauvé
' + 'Laval, QC  H7R 3X2

' + '
'; var marker93 = createMarker({ position: new google.maps.LatLng(45.5521550, -73.8679430), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

50 montée Gagnon
' + 'Bois-des-Filion, QC  J6Z 2L1

' + '
'; var marker94 = createMarker({ position: new google.maps.LatLng(45.6653560, -73.7621540), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Tellier
' + '

871 rue Principale
' + 'St-Donat, QC  J0T 2C0

' + '
'; var marker95 = createMarker({ position: new google.maps.LatLng(46.3112936, -74.2092261), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Gagné & Filles Québec
' + '

969 Avenue Nordique
' + 'Québec, QC  G1C 7S8

' + '
'; var marker96 = createMarker({ position: new google.maps.LatLng(46.8907082, -71.1911148), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Millen #8383
' + '

10760 rue Millen
' + 'Montréal, QC  H2C 0A5

' + '
'; var marker97 = createMarker({ position: new google.maps.LatLng(45.5566943, -73.6683339), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Deux-Montagnes
' + '

850 chemin d\'Oka
' + 'Deux-Montagnes, QC  J7R 1L7

' + '
'; var marker98 = createMarker({ position: new google.maps.LatLng(45.5411171, -73.8922609), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Cregheur Terrebonne
' + '

5671 Boulevard Laurier
' + 'Terrebonne, QC  J7M 1T7

' + '
'; var marker99 = createMarker({ position: new google.maps.LatLng(45.7563475, -73.7117260), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

2605 Rue d\'Annemasse
' + 'Boisbriand, QC  J7H 0A5

' + '
'; var marker100 = createMarker({ position: new google.maps.LatLng(45.6257560, -73.8518839), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

2635 Boulevard du Curé Labelle
' + 'Prévost, QC  J0R 1T0

' + '
'; var marker101 = createMarker({ position: new google.maps.LatLng(45.8399557, -74.0602766), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Morin Heights
' + '

680 chemin du Village
' + 'Morin-Heights, QC  J0R 1H0

' + '
'; var marker102 = createMarker({ position: new google.maps.LatLng(45.9034726, -74.2430765), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Sevigny
' + '

5805 Boulevard Robert-Bourassa
' + 'Laval, QC  H7E 0A4

' + '
'; var marker103 = createMarker({ position: new google.maps.LatLng(45.6111473, -73.7004098), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Boucherie Chouinard et fils 418
' + '

10505 Boulevard Ste-Anne
' + 'Ste-Anne de Beaupré, QC  G0A 3C0

' + '
'; var marker104 = createMarker({ position: new google.maps.LatLng(47.0285495, -70.9154723), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Laval, St-François
' + '

8475 Rue Chartrand
' + 'Laval, QC  H7A 1M5

' + '
'; var marker105 = createMarker({ position: new google.maps.LatLng(45.6679098, -73.5767334), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marché de la Concorde
' + '

4411 Boulevard de la Concorde E
' + 'Laval, QC  H7C 1M4

' + '
'; var marker106 = createMarker({ position: new google.maps.LatLng(45.6053698, -73.6507793), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Laval
' + '

3500 Boulevard Saint-Martin O
' + 'Laval, QC  H7T 2W4

' + '
'; var marker107 = createMarker({ position: new google.maps.LatLng(45.5536078, -73.7503452), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Richard Tellier
' + '

550 Autoroute Chomedey
' + 'Laval, QC  H7X 3S9

' + '
'; var marker108 = createMarker({ position: new google.maps.LatLng(45.5252058, -73.7834802), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

2820, Rue De Salaberry
' + 'Montréal, QC  H3M 1L3

' + '
'; var marker109 = createMarker({ position: new google.maps.LatLng(45.5356678, -73.6989980), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

461 chemin de la Grande Ligne
' + 'Rigaud, QC  J0P 1P0

' + '
'; var marker110 = createMarker({ position: new google.maps.LatLng(45.4789155, -74.2880142), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Famille Goulet
' + '

30 Rue Maple
' + 'Grenville, QC  J0V 1J0

' + '
'; var marker111 = createMarker({ position: new google.maps.LatLng(45.6241614, -74.5946098), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Martin #8543
' + '

11130 Rue Meighen
' + 'Pierrefonds, QC  H8Y 3K8

' + '
'; var marker112 = createMarker({ position: new google.maps.LatLng(45.5117760, -73.8158945), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #8591
' + '

100 Rue Theophile-Brassard
' + 'Coteau-Du-Lac, QC  J0P 1B0

' + '
'; var marker113 = createMarker({ position: new google.maps.LatLng(45.2740507, -74.1942347), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #517
' + '

11800 Boul De Salaberry
' + 'Dollard-Des-Ormeaux, QC  H9B 2R8

' + '
'; var marker114 = createMarker({ position: new google.maps.LatLng(45.4836829, -73.8044930), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #8395
' + '

12 Place De La Triade
' + 'Pointe-Claire, QC  H9R 0A2

' + '
'; var marker115 = createMarker({ position: new google.maps.LatLng(45.4625994, -73.8230858), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #8253
' + '

1500 Ave. Atwater
' + 'Montreal, QC  H3Z 1X5

' + '
'; var marker116 = createMarker({ position: new google.maps.LatLng(45.4888050, -73.5859921), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #8353
' + '

1869 Chemin St-Angelique
' + 'Saint-Lazare, QC  J7T 2X9

' + '
'; var marker117 = createMarker({ position: new google.maps.LatLng(45.4009389, -74.1378430), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

2600 Rue Mullins
' + 'Montreal, QC  H3K 1P2

' + '
'; var marker118 = createMarker({ position: new google.maps.LatLng(45.4768210, -73.5674890), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

30 Place du Commerce
' + 'Verdun, QC  H3E 1V7

' + '
'; var marker119 = createMarker({ position: new google.maps.LatLng(45.4681861, -73.5398236), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

3701 Boul St-Charles
' + 'Kirkland, QC  H9H 4M2

' + '
'; var marker120 = createMarker({ position: new google.maps.LatLng(45.4596187, -73.8636523), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

3964, Rue Notre-Dame Ouest
' + 'St-Henri, QC  H4C 1R1

' + '
'; var marker121 = createMarker({ position: new google.maps.LatLng(45.4779930, -73.5835750), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

4500 Rue Wellington
' + 'Verdun, QC  H4G 1W7

' + '
'; var marker122 = createMarker({ position: new google.maps.LatLng(45.4590435, -73.5670118), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

484 Rue Main
' + 'Hudson, QC  J0P 1H0

' + '
'; var marker123 = createMarker({ position: new google.maps.LatLng(45.4594694, -74.1429312), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

4885 Ave. Van Horne
' + 'Montreal, QC  H3W 1J2

' + '
'; var marker124 = createMarker({ position: new google.maps.LatLng(45.4932958, -73.6394452), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5 Place Desjardins
' + 'Montreal, QC  H5B 1B5

' + '
'; var marker125 = createMarker({ position: new google.maps.LatLng(45.5073696, -73.5641008), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5144 Rue Bannantyne
' + 'Verdun, QC  H4G 1G5

' + '
'; var marker126 = createMarker({ position: new google.maps.LatLng(45.4552399, -73.5760486), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5600, Boul. Henri-Bourassa O
' + 'Saint-Laurent, QC  H4R 0M6

' + '
'; var marker127 = createMarker({ position: new google.maps.LatLng(45.5173710, -73.7151891), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5800 Boul Cavendish
' + 'Cote St Luc, QC  H4W 2T5

' + '
'; var marker128 = createMarker({ position: new google.maps.LatLng(45.4758369, -73.6662946), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

6675 Boul Monk
' + 'Montreal, QC  H4E 3J2

' + '
'; var marker129 = createMarker({ position: new google.maps.LatLng(45.4520893, -73.5939745), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marché Barcelo
' + '

900 Rue Saint-Zotique E
' + 'Montreal, QC  H2S 1M8

' + '
'; var marker130 = createMarker({ position: new google.maps.LatLng(45.5381124, -73.6058333), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

960 Ch Herron
' + 'Dorval, QC  H9S 1B3

' + '
'; var marker131 = createMarker({ position: new google.maps.LatLng(45.4461580, -73.7459122), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Beaubien Tellier
' + '

5000 Rue Beaubien E
' + 'Montreal, QC  H1T 1V5

' + '
'; var marker132 = createMarker({ position: new google.maps.LatLng(45.5720434, -73.5711836), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Bourgault et Sanzone #8533
' + '

12285, Rodolpĥe-Forget
' + 'Riviere des Prairies, QC  H1E 0A2

' + '
'; var marker133 = createMarker({ position: new google.maps.LatLng(45.6481416, -73.5769335), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Lachenaie #8528
' + '

1115, Montée des Pionniers
' + 'Terrebonne, QC  J6V 0E1

' + '
'; var marker134 = createMarker({ position: new google.maps.LatLng(45.7274508, -73.5110164), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Eric Hauptman Notre-Dame
' + '

173, Notre Dame
' + 'Repentigny, QC  J6A 2P5

' + '
'; var marker135 = createMarker({ position: new google.maps.LatLng(45.7187563, -73.4702992), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Famille Crégheur
' + '

2305 Avenue du marché
' + 'St-Lin, QC  J5M 0G3

' + '
'; var marker136 = createMarker({ position: new google.maps.LatLng(45.8280002, -73.7578287), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Famille Crégheur (La Pinière) Inc.
' + '

2765, Boulevard de la Pinière
' + 'Terrebonne, QC  J6X 0G3

' + '
'; var marker137 = createMarker({ position: new google.maps.LatLng(45.7167173, -73.6962353), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Mascouche
' + '

65, Montee Masson
' + 'Mascouche, QC  J7K 3B4

' + '
'; var marker138 = createMarker({ position: new google.maps.LatLng(45.7218891, -73.6196162), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

315, Valmont
' + 'Repentigny, QC  J5Y 0Y5

' + '
'; var marker139 = createMarker({ position: new google.maps.LatLng(45.7692205, -73.4461178), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra Famille Lacoste
' + '

13155, rue Sherbrooke Est
' + 'Pointe-aux-Trembles, QC  H1A 1B9

' + '
'; var marker140 = createMarker({ position: new google.maps.LatLng(45.6580551, -73.5105053), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marché D\'alimentation Martin Lamarr
' + '

3260, Lapiniere
' + 'Brossard, QC  J4Z 3L8

' + '
'; var marker141 = createMarker({ position: new google.maps.LatLng(45.4633877, -73.4546787), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marché du Faubourg St-Amable inc.
' + '

525, rue Principale
' + 'St-Amable, QC  J0L 1N0

' + '
'; var marker142 = createMarker({ position: new google.maps.LatLng(45.6428172, -73.3078154), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marché du Faubourg Ste-Julie inc. / famille Raymond
' + '

2055, rue Principale
' + 'Ste-Julie, QC  J3E 1W1

' + '
'; var marker143 = createMarker({ position: new google.maps.LatLng(45.5881669, -73.3480936), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marché Girard Terrebonne Inc.
' + '

3451, Montée Gagnon
' + 'Terrebonne, QC  J6Y 1K6

' + '
'; var marker144 = createMarker({ position: new google.maps.LatLng(45.6946045, -73.8048044), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Marche Senecal
' + '

9450, boul. Lacordaire
' + 'St-Leonard, QC  H1R 0C8

' + '
'; var marker145 = createMarker({ position: new google.maps.LatLng(45.5996926, -73.6129481), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Place Dupuis
' + '

865 rue Ste-Catherine Est
' + 'Montreal, QC  H2L 2E4

' + '
'; var marker146 = createMarker({ position: new google.maps.LatLng(45.5161919, -73.5585644), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Place Longueuil
' + '

825,rue St-Laurent O.
' + 'Longueuil, QC  J4K 2V1

' + '
'; var marker147 = createMarker({ position: new google.maps.LatLng(45.5286290, -73.5154914), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Supermarché Gilles Bariteau inc.
' + '

6250, boul. Cousineau
' + 'St-Hubert, QC  J3y8x9

' + '
'; var marker148 = createMarker({ position: new google.maps.LatLng(45.4945862, -73.4079964), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Valerie et Martin Supermarché du Carrefour inc.
' + '

1777, Route 132
' + 'Varennes, QC  J3X 1P7

' + '
'; var marker149 = createMarker({ position: new google.maps.LatLng(45.6693759, -73.4307909), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Ste-Agathe des Monts
' + '

801 Rue Principale Rte 117
' + 'Sainte-Agathe-Des-Monts, QC  J8C 1L1

' + '
'; var marker150 = createMarker({ position: new google.maps.LatLng(46.0426240, -74.2710918), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Pierrefonds
' + '

14875 boul. Pierrefonds
' + 'Pierrefonds, QC  H9H 4Y1

' + '
'; var marker151 = createMarker({ position: new google.maps.LatLng(45.4849305, -73.8610337), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Ste-Marthe-sur-le-lac
' + '

2840 Boul Des Promenades
' + 'Sainte-Marthe-Sur-Le-Lac, QC  J0N 1P0

' + '
'; var marker152 = createMarker({ position: new google.maps.LatLng(45.5383485, -73.9224585), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Lachenaie
' + '

390 Montee Des Pionniers
' + 'Lachenaie, QC  J6V 1S6

' + '
'; var marker153 = createMarker({ position: new google.maps.LatLng(45.7126076, -73.5097927), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi St-Jérôme Laurentides
' + '

500 Boul Des Laurentides
' + 'Saint-Jerome, QC  J7Z 4M2

' + '
'; var marker154 = createMarker({ position: new google.maps.LatLng(45.7622485, -73.9944573), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Lachute
' + '

355 Rue Principale
' + 'Lachute, QC  J8H 2Z7

' + '
'; var marker155 = createMarker({ position: new google.maps.LatLng(45.6561907, -74.3451664), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Verdun
' + '

3000 Rue Wellington
' + 'Verdun, QC  H4G 1T1

' + '
'; var marker156 = createMarker({ position: new google.maps.LatLng(45.4714831, -73.5626723), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi St-Eustache
' + '

199 25E Ave.
' + 'Saint-Eustache, QC  J7P 2V1

' + '
'; var marker157 = createMarker({ position: new google.maps.LatLng(45.5756300, -73.8732268), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi St-Léonard, Jean-Talon (Langelier)
' + '

6750 Rue Jean-Talon E
' + 'Saint-Leonard, QC  H1S 1N1

' + '
'; var marker158 = createMarker({ position: new google.maps.LatLng(45.5937710, -73.5698965), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Blainville
' + '

1083 Boul Du Cure-Labelle
' + 'Blainville, QC  J7C 3M9

' + '
'; var marker159 = createMarker({ position: new google.maps.LatLng(45.6766731, -73.8863607), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Lasalle Dollard
' + '

2101, rue Dollard, B15
' + 'Lasalle, QC  H8N 1S2

' + '
'; var marker160 = createMarker({ position: new google.maps.LatLng(45.4321399, -73.6343732), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Dorval
' + '

310 Avenue Dorval
' + 'Dorval, QC  H9S 3H7

' + '
'; var marker161 = createMarker({ position: new google.maps.LatLng(45.4442929, -73.7418145), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Lachine
' + '

3150 Rue Remembrance
' + 'Lachine, QC  H8S 1X8

' + '
'; var marker162 = createMarker({ position: new google.maps.LatLng(45.4393606, -73.6913987), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Mont-Tremblant
' + '

390 Route 117
' + 'Mont-Tremblant, QC  J8E 2X3

' + '
'; var marker163 = createMarker({ position: new google.maps.LatLng(46.1178446, -74.5708880), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Angrignon
' + '

7081 Boul Newman
' + 'Lasalle, QC  H8N 1X1

' + '
'; var marker164 = createMarker({ position: new google.maps.LatLng(45.4482264, -73.6175524), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Bedford
' + '

6825 Cote-Des-Neiges
' + 'Montreal, QC  H3S 2B6

' + '
'; var marker165 = createMarker({ position: new google.maps.LatLng(45.5051351, -73.6375430), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie St-Laurent
' + '

1757 Boul Marcel-Laurin
' + 'Saint-Laurent, QC  H4R 1J5

' + '
'; var marker166 = createMarker({ position: new google.maps.LatLng(45.5175728, -73.6984628), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Pincourt
' + '

92 Boul Cardinal-Leger
' + 'Pincourt, QC  J7V 3Y4

' + '
'; var marker167 = createMarker({ position: new google.maps.LatLng(45.3836946, -73.9911035), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie St-Jérôme
' + '

900 Boul Grignon
' + 'Saint-Jerome, QC  J7Y 3S7

' + '
'; var marker168 = createMarker({ position: new google.maps.LatLng(45.7940071, -74.0178793), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Rosemère
' + '

339 Cure Labelle
' + 'Rosemere, QC  J7A 2H7

' + '
'; var marker169 = createMarker({ position: new google.maps.LatLng(45.629982193274564, -73.81415374149407), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Pte-Claire
' + '

6381, Route Transcanadienne
' + 'Pointe-Claire, QC  H9R 5A5

' + '
'; var marker170 = createMarker({ position: new google.maps.LatLng(45.4671107, -73.8271293), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Boucherville
' + '

520, boul. du Fort-Saint-Louis
' + 'Boucherville, QC  J4B 1S5

' + '
'; var marker171 = createMarker({ position: new google.maps.LatLng(45.6088144, -73.4510165), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Greenfield Park
' + '

3398, boul. Taschereau
' + 'Greenfield Park, QC  J4V 2H7

' + '
'; var marker172 = createMarker({ position: new google.maps.LatLng(45.4911520, -73.4784659), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Brossard
' + '

7200, Boul. Taschereau
' + 'Brossard, QC  J4W 1N1

' + '
'; var marker173 = createMarker({ position: new google.maps.LatLng(45.4620291, -73.4677410), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Fabreville
' + '

444 Boul Cure-Labelle
' + 'Fabreville, QC  H7P 2P1

' + '
'; var marker174 = createMarker({ position: new google.maps.LatLng(45.5787393, -73.7866442), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Jean-Talon
' + '

4325, Jean Talon Est
' + 'Montreal, QC  H1S 1J9

' + '
'; var marker175 = createMarker({ position: new google.maps.LatLng(45.5698571, -73.5907471), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Longueuil
' + '

2655, Chemin de Chambly
' + 'Longueuil, QC  J4L 1M3

' + '
'; var marker176 = createMarker({ position: new google.maps.LatLng(45.5248087, -73.4659162), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Masson
' + '

2535, rue Masson
' + 'Montréal, QC  H1Y 1V7

' + '
'; var marker177 = createMarker({ position: new google.maps.LatLng(45.5440433, -73.5778725), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Place Versailles
' + '

7455, Sherbrooke Est
' + 'Montreal, QC  H1N 1E8

' + '
'; var marker178 = createMarker({ position: new google.maps.LatLng(45.5921468, -73.5415806), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Pointe-Aux-Trembles
' + '

12780 Sherbrooke E
' + 'Pointe-Aux-Trembles, QC  H1A 4Y3

' + '
'; var marker179 = createMarker({ position: new google.maps.LatLng(45.6534513, -73.5094008), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Rawdon
' + '

3399, rue Queen
' + 'Rawdon, QC  J0K 1S0

' + '
'; var marker180 = createMarker({ position: new google.maps.LatLng(46.0373546, -73.6997302), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Repentigny
' + '

86 Boul Brien
' + 'Repentigny, QC  J6A 5K7

' + '
'; var marker181 = createMarker({ position: new google.maps.LatLng(45.7418553, -73.4548870), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Préfontaine
' + '

2925, rue Sherbrooke Est
' + 'Montréal, QC  H1W 1B2

' + '
'; var marker182 = createMarker({ position: new google.maps.LatLng(45.5410897, -73.5595115), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Ste-Julie
' + '

153 Boulevard Armand-Frappier
' + 'Sainte-Julie, QC  J3E 0G2

' + '
'; var marker183 = createMarker({ position: new google.maps.LatLng(45.5840958, -73.3244383), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie St-Hubert
' + '

7900, boul. Cousineau
' + 'St-Hubert, QC  J3Z 1H2

' + '
'; var marker184 = createMarker({ position: new google.maps.LatLng(45.4815134, -73.3856988), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Vaudreuil
' + '

501 Av. Saint-Charles
' + 'Vaudreuil-Dorion, QC  J7V 8V9

' + '
'; var marker185 = createMarker({ position: new google.maps.LatLng(45.4054133, -74.0312438), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Du Parc
' + '

375 Rue Jean-Talon O
' + 'Montréal, QC  H3N 2Y8

' + '
'; var marker186 = createMarker({ position: new google.maps.LatLng(45.5308308, -73.6227840), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Vimont
' + '

2090, Boul des Laurentides
' + 'Laval, QC  H7M 2Y6

' + '
'; var marker187 = createMarker({ position: new google.maps.LatLng(45.6060202, -73.7342824), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Papineau
' + '

8305, Papineau
' + 'Montréal, QC  H2M 2G2

' + '
'; var marker188 = createMarker({ position: new google.maps.LatLng(45.5562013, -73.6214162), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Pie-IX
' + '

10200, boul. Pie Ix
' + 'Montréal, QC  H1H 3Z1

' + '
'; var marker189 = createMarker({ position: new google.maps.LatLng(45.5841076, -73.6323192), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Riviere Des Prairies
' + '

7605 Maurice Duplessis
' + 'Montreal, QC  H1E 7N2

' + '
'; var marker190 = createMarker({ position: new google.maps.LatLng(45.6278142, -73.5976660), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
COOP IGA PLESSISVILLE #414
' + '

1971, RUE BILODEAU
' + 'PLESSISVILLE, QC  G6L 3J1

' + '
'; var marker191 = createMarker({ position: new google.maps.LatLng(46.2185769, -71.7657456), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
COOP IGA STE-FOY #464
' + '

999, RUE DE BOURGOGNE
' + 'STE-FOY, QC  G1W 4S6

' + '
'; var marker192 = createMarker({ position: new google.maps.LatLng(46.7644581, -71.3083546), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
COOP LA POCATIÈRE # 518
' + '

161, ROUTE 230 OUEST LOCAL 100
' + 'LA POCATIERE, QC  G0R 1Z0

' + '
'; var marker193 = createMarker({ position: new google.maps.LatLng(47.3595293, -70.0557225), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

1395, rue de l\'Annonciation Sud
' + 'Riviere-Rouge,   J0T 1T0

' + '
'; var marker194 = createMarker({ position: new google.maps.LatLng(46.400849, -74.866964), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

1401, blv. Cremazie Est
' + 'Montréal,   H2M 0B1

' + '
'; var marker195 = createMarker({ position: new google.maps.LatLng(45.5529336, -73.6257426), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA #8046
' + '

265, RUE CHILD
' + 'COATICOOK, QC  J1A 2B5

' + '
'; var marker196 = createMarker({ position: new google.maps.LatLng(45.1364482, -71.8042535), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA A.D.R. CHARLESBOURG #264
' + '

795, BOUL. DU LAC
' + 'CHARLESBOURG, QC  G2M 0E4

' + '
'; var marker197 = createMarker({ position: new google.maps.LatLng(46.9304822, -71.3152547), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ACTON VALE #8747
' + '

1530, RUE D\'ACTON
' + 'ACTON VALE, QC  J0H 1A0

' + '
'; var marker198 = createMarker({ position: new google.maps.LatLng(45.6455915, -72.5744848), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA BAIE ST-PAUL #134
' + '

1020, BOUL. MGR LAVAL
' + 'BAIE ST-PAUL, QC  G3Z 2W6

' + '
'; var marker199 = createMarker({ position: new google.maps.LatLng(47.4454869, -70.5144400), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA BEAUCEVILLE #8274
' + '

630-D, BOUL. RENAULT
' + 'BEAUCEVILLE, QC  G5X 1M6

' + '
'; var marker200 = createMarker({ position: new google.maps.LatLng(46.2073633, -70.7738310), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA BONAVENTURE #482
' + '

168, AVENUE GRAND-PRE
' + 'BONAVENTURE, QC  G0C 1E0

' + '
'; var marker201 = createMarker({ position: new google.maps.LatLng(48.0490241, -65.4829408), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA BOUTIN LTÉE #8576
' + '

14, RUE NOTRE DAME EST
' + 'LORRAINVILLE, QC  J0Z 2R0

' + '
'; var marker202 = createMarker({ position: new google.maps.LatLng(47.3535949, -79.3523049), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA BOYER LASARRE #8231
' + '

77 - 2 IEME RUE EST
' + 'LASARRE, QC  J9Z 3G8

' + '
'; var marker203 = createMarker({ position: new google.maps.LatLng(48.8122100, -79.1986275), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA BROMPTONVILLE #8225
' + '

50, RUE BOURGEOYS
' + 'SHERBROOKE (BROMPTONVILLE), QC  J1C 0R4

' + '
'; var marker204 = createMarker({ position: new google.maps.LatLng(45.4703588, -71.9491144), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA CANTLEY # 8064
' + '

455, MONTÉE DE LA SOURCE
' + 'CANTLEY, QC  J8V 3B5

' + '
'; var marker205 = createMarker({ position: new google.maps.LatLng(45.5405524, -75.7738008), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA CHANDLER #8255
' + '

89, BOUL. RENÉ-LÉVESQUE OUEST
' + 'CHANDLER, QC  G0X 1K0

' + '
'; var marker206 = createMarker({ position: new google.maps.LatLng(48.3497141, -64.6807158), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA CHIBOUGAMAU #8019
' + '

466, 3IÈME RUE
' + 'CHIBOUGAMAU, QC  G8P 2X6

' + '
'; var marker207 = createMarker({ position: new google.maps.LatLng(49.9131930, -74.3622745), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA CHICOUTIMI-NORD #8041
' + '

625, BOUL. STE-GENEVIÈVE
' + 'CHICOUTIMI-NORD, QC  G7G 2E5

' + '
'; var marker208 = createMarker({ position: new google.maps.LatLng(48.4431697, -71.0784074), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA CLERMONT #8481
' + '

110, BOUL. NOTRE-DAME
' + 'CLERMONT, QC  G4A 1G3

' + '
'; var marker209 = createMarker({ position: new google.maps.LatLng(47.6907528, -70.2242965), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA COOKSHIRE #8065
' + '

35, RUE PRINCIPALE EST
' + 'COOKSHIRE, QC  J0B 1M0

' + '
'; var marker210 = createMarker({ position: new google.maps.LatLng(45.4129692, -71.6288172), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA COOP #408
' + '

321 ROUTE DE L\'ÉGLISE
' + 'ST-JEAN-PORT-JOLI, QC  G0R 3G0

' + '
'; var marker211 = createMarker({ position: new google.maps.LatLng(47.2126258, -70.2661755), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA COOP ALMA #526
' + '

705, AVENUE DU PONT NORD
' + 'ALMA, QC  G8B 6T5

' + '
'; var marker212 = createMarker({ position: new google.maps.LatLng(48.5621728, -71.6390256), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA COOP CHARLESBOURG #490
' + '

1233, BOUL. LOUIS XIV
' + 'QUEBEC, QC  G2L 1L9

' + '
'; var marker213 = createMarker({ position: new google.maps.LatLng(46.8724615, -71.2545171), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA COOP L\'UNITÉ #8793
' + '

1069, CHEMIN DE GROS-CAP
' + 'L\'ÉTANG-DU-NORD, QC  G4T 3M9

' + '
'; var marker214 = createMarker({ position: new google.maps.LatLng(47.3583853, -61.8945580), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA COOP PORT-CARTIER #8511
' + '

26, BOUL. DES ILES
' + 'PORT-CARTIER, QC  G5B 2N4

' + '
'; var marker215 = createMarker({ position: new google.maps.LatLng(50.0225055, -66.8916366), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA DES SOURCES #8308
' + '

17010, BOUL. HENRI-BOURASSA
' + 'QUEBEC, QC  G1G 4A3

' + '
'; var marker216 = createMarker({ position: new google.maps.LatLng(46.8867461, -71.2908702), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA DISRAELI #8315
' + '

1300, AVENUE CHAMPLAIN
' + 'DISRAELI, QC  G0N 1E0

' + '
'; var marker217 = createMarker({ position: new google.maps.LatLng(45.9121054, -71.3623181), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EAST ANGUS # 8028
' + '

150 RUE ANGUS SUD, SUITE 10
' + 'EAST ANGUS, QC  J0B 1R0

' + '
'; var marker218 = createMarker({ position: new google.maps.LatLng(45.4752719, -71.6677515), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA FARNHAM #8357
' + '

999, RUE PRINCIPALE EST
' + 'FARNHAM, QC  J2N 1M9

' + '
'; var marker219 = createMarker({ position: new google.maps.LatLng(45.2811522, -72.9669555), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA FERME NEUVE #8388
' + '

268, 9E AVENUE
' + 'FERME-NEUVE, QC  J0W 1C0

' + '
'; var marker220 = createMarker({ position: new google.maps.LatLng(46.7019204, -75.4530227), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA GALT OUEST, SHERB. #514
' + '

775, RUE GALT OUEST
' + 'SHERBROOKE, QC  J1H 1Z1

' + '
'; var marker221 = createMarker({ position: new google.maps.LatLng(45.3945501, -71.8979286), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA GATINEAU
' + '

112, RUE GEORGES
' + 'GATINEAU, QC  J8M 1A2

' + '
'; var marker222 = createMarker({ position: new google.maps.LatLng(45.5557787, -75.4337979), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA GATINEAU #8476
' + '

425, BOULEVARD SAINT-JOSEPH
' + 'GATINEAU (HULL), QC  J8Y 3Z8

' + '
'; var marker223 = createMarker({ position: new google.maps.LatLng(45.4455660, -75.7338369), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA GIRARD ST-AUGUSTIN #8295
' + '

14995, RUE DES SAULES
' + 'MIRABEL (ST-AUGUSTIN), QC  J7N 2A3

' + '
'; var marker224 = createMarker({ position: new google.maps.LatLng(45.6335526, -73.9846986), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA GRANDE RIVIÈRE #8233
' + '

143, GRANDE ALLEE EST
' + 'GRANDE RIVIERE, QC  G0C 1V0

' + '
'; var marker225 = createMarker({ position: new google.maps.LatLng(48.3957799, -64.4930235), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA GRAND-MÈRE #252
' + '

850 - 7IÈME AVENUE
' + 'GRAND-MÈRE, QC  G9T 2B8

' + '
'; var marker226 = createMarker({ position: new google.maps.LatLng(46.6133744, -72.6969848), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA HUNTINGDON #8191
' + '

2195, CHEMIN RIDGE
' + 'HUNTINGDON, QC  J0S 1H0

' + '
'; var marker227 = createMarker({ position: new google.maps.LatLng(45.0923636, -74.1865421), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA IBERVILLE #8113
' + '

435, 9E AVENUE
' + 'ST-JEAN-SUR-RICHELIEU, QC  J2X 1K5

' + '
'; var marker228 = createMarker({ position: new google.maps.LatLng(45.3120936, -73.2310639), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA JODOIN ST-HYACINTHE #380
' + '

2260, RUE ST-CHARLES
' + 'ST-HYACINTHE, QC  J2T 1V5

' + '
'; var marker229 = createMarker({ position: new google.maps.LatLng(45.6185105, -72.9481068), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA KNOWLTON #286
' + '

461, CHEMIN KNOWLTON
' + 'LAC BROME, QC  J0E 1V0

' + '
'; var marker230 = createMarker({ position: new google.maps.LatLng(45.2138196, -72.5273878), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA LA TUQUE #8200
' + '

547, RUE ST-LOUIS
' + 'LA TUQUE, QC  G9X 2X3

' + '
'; var marker231 = createMarker({ position: new google.maps.LatLng(47.4398403, -72.7832686), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA LAC ST-CHARLES #8379
' + '

1501, BOUL. JACQUES-BEDARD
' + 'QUEBEC, QC  G3G 1P9

' + '
'; var marker232 = createMarker({ position: new google.maps.LatLng(46.9024373, -71.3671974), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA LANDRY - TARDIF INC.
' + '

3950, BOUL. GUILLAUME-COUTURE
' + 'LEVIS, QC  G6W 1H7

' + '
'; var marker233 = createMarker({ position: new google.maps.LatLng(46.7739341, -71.1961401), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MASSON-ANGERS #146
' + '

1205, DE NEUVILLE
' + 'GATINEAU (ANGERS), QC  J8M 2E7

' + '
'; var marker234 = createMarker({ position: new google.maps.LatLng(45.5317776, -75.4946844), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MATANE #8042
' + '

551, AVENUE DU PHARE EST
' + 'MATANE, QC  G4W 1A8

' + '
'; var marker235 = createMarker({ position: new google.maps.LatLng(48.8516567, -67.5114865), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MELLON INC. #8018
' + '

2085, BOUL. MELLON
' + 'JONQUIERE, QC  G7S 3G4

' + '
'; var marker236 = createMarker({ position: new google.maps.LatLng(48.4197214, -71.1783945), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MÉNARD - LAURIER #8214
' + '

299, BOUL. SIR WILFRID-LAURIER
' + 'ST-LAMBERT, QC  J4R 2L1

' + '
'; var marker237 = createMarker({ position: new google.maps.LatLng(45.4934643, -73.5017242), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA METABETCHOUAN #8580
' + '

13, AVENUE VILLENEUVE
' + 'METABETCHOUAN, QC  G8G 1L2

' + '
'; var marker238 = createMarker({ position: new google.maps.LatLng(48.4185217, -71.8731726), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MISTASSINI #686
' + '

134, BOUL. ST-MICHEL
' + 'MISTASSINI, QC  G8L 5J7

' + '
'; var marker239 = createMarker({ position: new google.maps.LatLng(48.8941889, -72.2061255), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MONT-JOLI #8365
' + '

1330, BOUL. BENOIT-GABOURY
' + 'MONT-JOLI, QC  G5H 4B2

' + '
'; var marker240 = createMarker({ position: new google.maps.LatLng(48.5875613, -68.2003601), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA MONT-LAURIER #8322
' + '

101, RUE HÉBERT
' + 'MONT-LAURIER, QC  J9L 3H9

' + '
'; var marker241 = createMarker({ position: new google.maps.LatLng(46.5496178, -75.4889662), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA NICOLET #8115
' + '

2000, BOUL. L-FRÉCHETTE, #100
' + 'NICOLET, QC  J3T 1M9

' + '
'; var marker242 = createMarker({ position: new google.maps.LatLng(46.2397820, -72.5974240), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA NORMANDIN #8182
' + '

1130, RUE SAINT-CYRILLE
' + 'NORMANDIN, QC  G8M 4J7

' + '
'; var marker243 = createMarker({ position: new google.maps.LatLng(48.8374352, -72.5306634), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ORMSTOWN #8022
' + '

4, RUE BRIDGE
' + 'ORMSTOWN, QC  J0S 1K0

' + '
'; var marker244 = createMarker({ position: new google.maps.LatLng(45.1209430, -73.9909097), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA PASPEBIAC #8250
' + '

111, GERARD D. LEVESQUE
' + 'PASPEBIAC, QC  G0C 2K0

' + '
'; var marker245 = createMarker({ position: new google.maps.LatLng(48.0278464, -65.2605203), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA PEPIN BELOEIL #8137
' + '

825, BOUL. YVON L\'HEUREUX
' + 'BELOEIL, QC  J3G 6P5

' + '
'; var marker246 = createMarker({ position: new google.maps.LatLng(45.5781265, -73.2150681), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA PEPIN ST-HILAIRE
' + '

580, BOUL. SIR WILFRID-LAURIER
' + 'MONT ST-HILAIRE, QC  J3H 0R9

' + '
'; var marker247 = createMarker({ position: new google.maps.LatLng(45.5693543, -73.1786348), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA PONT-ROUGE #8050
' + '

190, RUE DU COLLÈGE
' + 'PONT-ROUGE, QC  G3H 0C6

' + '
'; var marker248 = createMarker({ position: new google.maps.LatLng(46.7448381, -71.6902398), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ROBERVAL #462
' + '

1221, BOUL. MARCOTTE
' + 'ROBERVAL, QC  G8H 3B8

' + '
'; var marker249 = createMarker({ position: new google.maps.LatLng(48.5241230, -72.2332154), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ROY ROUYN-NORANDA #550
' + '

240, AVENUE LARIVIÈRE
' + 'ROUYN-NORANDA, QC  J9X 4G8

' + '
'; var marker250 = createMarker({ position: new google.maps.LatLng(48.2361815, -79.0156832), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA SAINTE-MARTINE #8202
' + '

305, RUE ST-JOSEPH
' + 'SAINTE-MARTINE, QC  J0S 1V0

' + '
'; var marker251 = createMarker({ position: new google.maps.LatLng(45.2551907, -73.7956088), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA SHAWINIGAN #8340
' + '

2105, 105 IEME AVENUE
' + 'SHAWINIGAN-SUD, QC  G9P 1N9

' + '
'; var marker252 = createMarker({ position: new google.maps.LatLng(46.5204343, -72.7449814), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA SILLERY # 8034
' + '

1580, CHEMIN ST-LOUIS
' + 'QUÉBEC (SILLERY), QC  G1S 1G6

' + '
'; var marker253 = createMarker({ position: new google.maps.LatLng(46.7865658, -71.2474351), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA SOURCES BOISCHATEL #8278
' + '

5114, AVENUE ROYALE
' + 'BOISCHATEL, QC  G0A 1H0

' + '
'; var marker254 = createMarker({ position: new google.maps.LatLng(46.8938578, -71.1418384), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-APOLLINAIRE #8325
' + '

148, RUE PRINCIPALE
' + 'ST-APOLLINAIRE, QC  G0S 2E0

' + '
'; var marker255 = createMarker({ position: new google.maps.LatLng(46.6133392, -71.5146290), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-CHARLES DRUMMOND #8630
' + '

885, BOUL. FOUCAULT
' + 'SAINT-CHARLES-DE-DRUMMOND, QC  J2C 1A8

' + '
'; var marker256 = createMarker({ position: new google.maps.LatLng(45.9027555, -72.4739877), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA STE-BRIGITTE-DE-LAVAL 8162
' + '

339, AVENUE STE-BRIGITTE
' + 'STE-BRIGITTE-DE-LAVAL, QC  G0A 3K0

' + '
'; var marker257 = createMarker({ position: new google.maps.LatLng(46.9934584, -71.2023476), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA STE-CATHERINE #8358
' + '

4540, ROUTE FOSSAMBAULT
' + 'STE-CATHERINE J-C, QC  G3N 2T6

' + '
'; var marker258 = createMarker({ position: new google.maps.LatLng(46.8412191, -71.6096539), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA STE-FOY #8188
' + '

255, CHEMIN STE-FOY
' + 'QUEBEC, QC  G1R 1T5

' + '
'; var marker259 = createMarker({ position: new google.maps.LatLng(46.8043325, -71.2310635), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA STE-FOY #8350
' + '

2561, CHEMIN QUATRE-BOURGEOIS
' + 'QUEBEC, QC  G1V 0G3

' + '
'; var marker260 = createMarker({ position: new google.maps.LatLng(46.7805145, -71.2892652), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA STE-MARGUERITE #8398
' + '

1305, RUE STE-MARGUERITE
' + 'TROIS-RIVIERES, QC  G8Z 1W1

' + '
'; var marker261 = createMarker({ position: new google.maps.LatLng(46.3426177, -72.5561156), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-FÉLICIEN #8370
' + '

1199, BOUL. ST-FELICIEN
' + 'SAINT-FELICIEN, QC  G8K 3J1

' + '
'; var marker262 = createMarker({ position: new google.maps.LatLng(48.6549809, -72.4604535), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-JEAN CHRYSOSTOME #8653
' + '

1015, RUE DU BASILIC
' + 'LÉVIS, QC  G6Z 3K4

' + '
'; var marker263 = createMarker({ position: new google.maps.LatLng(46.7252696, -71.2044868), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-LAMBERT DE LAUZON
' + '

1234, RUE DU PONT
' + 'ST-LAMBERT-DE-LAUZON, QC  G0S 2W0

' + '
'; var marker264 = createMarker({ position: new google.maps.LatLng(46.5934492, -71.2045377), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-LUC #8164
' + '

318, BOUL. ST-LUC
' + 'Saint-Luc, QC  J2W 2A3

' + '
'; var marker265 = createMarker({ position: new google.maps.LatLng(45.3570814, -73.2995856), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA STONEHAM #409
' + '

335, CHEMIN DU HIBOU
' + 'STONEHAM-ET-TWEKESBURY, QC  G3C 1R9

' + '
'; var marker266 = createMarker({ position: new google.maps.LatLng(47.0007436, -71.3691964), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA TROIS-PISTOLES #8284
' + '

77, RUE PELLETIER
' + 'TROIS-PISTOLES, QC  G0L 4K0

' + '
'; var marker267 = createMarker({ position: new google.maps.LatLng(48.1234482, -69.1769858), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA VANIER #8234
' + '

1035, BOUL. WILFRID-HAMEL
' + 'QUEBEC, QC  G1M 2R7

' + '
'; var marker268 = createMarker({ position: new google.maps.LatLng(46.8090408, -71.2591043), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA VICTORIAVILLE #428
' + '

560, BOUL DES BOIS-FRANCS SUD
' + 'VICTORIAVILLE, QC  G6P 5X4

' + '
'; var marker269 = createMarker({ position: new google.maps.LatLng(46.0502600, -71.9355275), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA VILLE LA BAIE # 8612
' + '

150, 6 IEME RUE
' + 'VILLE LA BAIE, QC  G7B 4V9

' + '
'; var marker270 = createMarker({ position: new google.maps.LatLng(48.3318303, -70.8905389), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA WARWICK #429
' + '

10, DU CENTRE SPORTIF
' + 'WARWICK, QC  J0A 1M0

' + '
'; var marker271 = createMarker({ position: new google.maps.LatLng(45.9480605, -71.9978510), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
MAGASIN CO-OP DE MARIA #299
' + '

524, BOUL. PERRON
' + 'MARIA, QC  G0C 1Y0

' + '
'; var marker272 = createMarker({ position: new google.maps.LatLng(48.1748797, -65.9809544), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA GAOUETTE #8599
' + '

40, RUE EVANGELINE
' + 'GRANBY, QC  J2G 8K1

' + '
'; var marker273 = createMarker({ position: new google.maps.LatLng(45.4153251, -72.7498547), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

70, BOUL. TACHÉ OUEST
' + 'MONTMAGNY, QC  G5V 3A4

' + '
'; var marker274 = createMarker({ position: new google.maps.LatLng(46.9793917, -70.5675910), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXPRESS, PRÉVOST #6042
' + '

2900, BOUL. CURÉ-LABELLE
' + 'PRÉVOST, QC  J0R 1T0

' + '
'; var marker275 = createMarker({ position: new google.maps.LatLng(45.8600455, -74.0705674), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA #8254
' + '

11, RUE DE L\'AQUEDUC
' + 'VICTORIAVILLE, QC  G6P 1L5

' + '
'; var marker276 = createMarker({ position: new google.maps.LatLng(46.0608692, -71.9696581), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA #8553
' + '

680, AVENUE CHAUSSÉE
' + 'ROUYN-NORANDA, QC  J9X 4B9

' + '
'; var marker277 = createMarker({ position: new google.maps.LatLng(48.2253347, -79.0072067), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA BAIE COMEAU #8526
' + '

1500, RUE DE BRETAGNE
' + 'BAIE-COMEAU, QC  G5C 3S9

' + '
'; var marker278 = createMarker({ position: new google.maps.LatLng(49.2043859, -68.2540084), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA BEAUHARNOIS #8293
' + '

530, BOUL. CADIEUX
' + 'BEAUHARNOIS, QC  J6N 0R5

' + '
'; var marker279 = createMarker({ position: new google.maps.LatLng(45.3054082, -73.8614403), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA BLAINVILLE #8154
' + '

9, BOUL. DE LA SEIGNEURIE
' + 'BLAINVILLE, QC  J7C 4G6

' + '
'; var marker280 = createMarker({ position: new google.maps.LatLng(45.6671551, -73.8688758), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA CAP MADELEINE
' + '

645, BOUL. THIBEAU
' + 'TROIS-RIVIÈRES, QC  G8T 6Z6

' + '
'; var marker281 = createMarker({ position: new google.maps.LatLng(46.3830278, -72.5448742), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA CARIGNAN
' + '

2369, CHEMIN CHAMBLY
' + 'CARIGNAN, QC  J3L 4N4

' + '
'; var marker282 = createMarker({ position: new google.maps.LatLng(45.4585017, -73.3121955), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA CHÂTEAUGUAY #439
' + '

90, BOUL. ANJOU
' + 'CHATEAUGUAY, QC  J6K 1C3

' + '
'; var marker283 = createMarker({ position: new google.maps.LatLng(45.3594224, -73.7337605), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA CHAUVEAU #522
' + '

2295, AVENUE CHAUVEAU
' + 'QUÉBEC, QC  G2C 0G7

' + '
'; var marker284 = createMarker({ position: new google.maps.LatLng(46.8422365, -71.3271611), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA COOP RIMOUSKI # 8314
' + '

375, BOUL. JESSOP
' + 'RIMOUSKI, QC  G5L 1M9

' + '
'; var marker285 = createMarker({ position: new google.maps.LatLng(48.4641385, -68.5164584), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA COWANSVILLE #8092
' + '

1531, RUE SUD
' + 'COWANSVILLE, QC  J2K 2Z4

' + '
'; var marker286 = createMarker({ position: new google.maps.LatLng(45.1920135, -72.7523268), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA DES SOURCES #6932
' + '

4250, 1ERE AVENUE #95
' + 'CHARLESBOURG, QC  G1H 2S5

' + '
'; var marker287 = createMarker({ position: new google.maps.LatLng(46.8436447, -71.2473091), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA DES SOURCES #8572
' + '

3373, DE L\'HETRIÈRE
' + 'QUEBEC, QC  G3A 0M2

' + '
'; var marker288 = createMarker({ position: new google.maps.LatLng(46.7633427, -71.3722804), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA FLEURIMONT #8016
' + '

2240, RUE KING EST
' + 'SHERBROOKE, QC  J1G 5G8

' + '
'; var marker289 = createMarker({ position: new google.maps.LatLng(45.4114202, -71.8399981), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA G. HÉRON #8012
' + '

1005, BOUL GRAND-HERON
' + 'SAINT-JEROME, QC  J7Y 3P2

' + '
'; var marker290 = createMarker({ position: new google.maps.LatLng(45.7609788, -74.0152618), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA GASPÉ #477
' + '

39-A, MONTEE SANDY BEACH
' + 'GASPE, QC  G4X 2A9

' + '
'; var marker291 = createMarker({ position: new google.maps.LatLng(48.8249958, -64.4737599), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA GAZAILLE GRANBY #8212
' + '

310, RUE DENISON EST
' + 'GRANBY, QC  J2H 2R6

' + '
'; var marker292 = createMarker({ position: new google.maps.LatLng(45.3936521, -72.7040441), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA JONQUIÈRE #8343
' + '

2620, RUE ST-HUBERT
' + 'JONQUIERE, QC  G7X 8S3

' + '
'; var marker293 = createMarker({ position: new google.maps.LatLng(48.4014774, -71.2511613), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA LAPRAIRIE #8031
' + '

975, BOUL. TASCHEREAU
' + 'LAPRAIRIE, QC  J5R 1W7

' + '
'; var marker294 = createMarker({ position: new google.maps.LatLng(45.4060330, -73.4961100), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA LÉVIS #8577
' + '

53, ROUTE PRESIDENT-KENNEDY
' + 'LEVIS, QC  G6V 6C7

' + '
'; var marker295 = createMarker({ position: new google.maps.LatLng(46.7950855, -71.1745683), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA MARCHÉ LAMBERT #8070
' + '

58, ROUTE 132
' + 'DELSON, QC  J5B 0A1

' + '
'; var marker296 = createMarker({ position: new google.maps.LatLng(45.3869415, -73.5468552), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA MCMASTERVILLE #8053
' + '

20, BOUL. LAURIER
' + 'MCMASTERVILLE, QC  J3G 1P8

' + '
'; var marker297 = createMarker({ position: new google.maps.LatLng(45.5486996, -73.2200687), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA MERCIER #8199
' + '

631, BOUL. ST-JEAN BAPTISTE
' + 'MERCIER, QC  J6R 2A3

' + '
'; var marker298 = createMarker({ position: new google.maps.LatLng(45.3218297, -73.7394956), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA NEW RICHMOND #8643
' + '

120, BOUL. PERRON
' + 'NEW RICHMOND, QC  G0C 2B0

' + '
'; var marker299 = createMarker({ position: new google.maps.LatLng(48.1621051, -65.8582235), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA PERREAULT
' + '

170, BOUL. ST-LUC
' + 'ST-JEAN-SUR-RICHELIEU, QC  J2W 1C7

' + '
'; var marker300 = createMarker({ position: new google.maps.LatLng(45.3408964, -73.2839712), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA RICHELIEU #8190
' + '

450, BOUL. RICHELIEU
' + 'RICHELIEU, QC  J3L 3R9

' + '
'; var marker301 = createMarker({ position: new google.maps.LatLng(45.4444441, -73.2478797), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA RIMOUSKI #8313
' + '

395, AVENUE SIROIS
' + 'RIMOUSKI, QC  G5L 8R2

' + '
'; var marker302 = createMarker({ position: new google.maps.LatLng(48.4351174, -68.5243247), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA RIVIÈRE-DU-LOUP #451
' + '

254, BOUL. HOTEL DE VILLE
' + 'RIVIERE-DU-LOUP, QC  G5R 1M4

' + '
'; var marker303 = createMarker({ position: new google.maps.LatLng(47.8253531, -69.5542270), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA SAGUENAY #8209
' + '

1324, BOUL. TALBOT
' + 'CHICOUTIMI, QC  G7H 4B8

' + '
'; var marker304 = createMarker({ position: new google.maps.LatLng(48.4068517, -71.0583419), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA SEPT-ÎLES
' + '

1010, BOUL. LAURE
' + 'UASHAT, QC  G4R 5P1

' + '
'; var marker305 = createMarker({ position: new google.maps.LatLng(50.2285592, -66.3891037), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA ST-ANTOINE #8004
' + '

1430, BOUL. ST-ANTOINE
' + 'ST-JÉRÔME, QC  J7Z 7M2

' + '
'; var marker306 = createMarker({ position: new google.maps.LatLng(45.7690671, -73.9726509), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA ST-JANVIER #8374
' + '

13380, BOUL. CURE-LABELLE
' + 'MIRABEL (ST-JANVIER), QC  J7J 1G9

' + '
'; var marker307 = createMarker({ position: new google.maps.LatLng(45.6983887, -73.9211980), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA ST-NICÉPHORE #523
' + '

4565, BOUL. ST-JOSEPH, LOCAL 1
' + 'DRUMMONDVILLE, QC  J2A 1B4

' + '
'; var marker308 = createMarker({ position: new google.maps.LatLng(45.8377042, -72.4345231), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA ST-NICOLAS #168
' + '

1855, ROUTE DES RIVIÈRES #200
' + 'LÉVIS, QC  G7A 4X8

' + '
'; var marker309 = createMarker({ position: new google.maps.LatLng(46.7094863, -71.2897986), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA ST-RÉMI #8581
' + '

810, RUE ST-PAUL
' + 'ST-REMI-DE-NAPIERVILLE, QC  J0L 2L0

' + '
'; var marker310 = createMarker({ position: new google.maps.LatLng(45.2573040, -73.6084885), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA VAL BÉLAIR #8081
' + '

1819, AVE. INDUSTRIELLE
' + 'QUÉBEC (VAL BELAIR), QC  G3K 1L8

' + '
'; var marker311 = createMarker({ position: new google.maps.LatLng(46.8572672, -71.4113913), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA EXTRA VALLEYFIELD #8378
' + '

1366 Boulevard Monseigneur-Langlois
' + 'SALABERRY-DE-VALLEYFIELD, QC  J6S 1E3

' + '
'; var marker312 = createMarker({ position: new google.maps.LatLng(45.2688592, -74.1311783), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA ST-HYACINTHE #8327
' + '

3000, BOUL. LAFRAMBOISE
' + 'ST-HYACINTHE, QC  J2S 4Z4

' + '
'; var marker313 = createMarker({ position: new google.maps.LatLng(45.6359164, -72.9664216), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ALMA, PONT-NORD
' + '

845, AVE. DU PONT-NORD
' + 'ALMA, QC  G8B 6W6

' + '
'; var marker314 = createMarker({ position: new google.maps.LatLng(48.5651591, -71.6399721), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ALMA, PONT-SUD
' + '

1055, AVE. DU PONT SUD
' + 'ALMA, QC  G8B 2V7

' + '
'; var marker315 = createMarker({ position: new google.maps.LatLng(48.5345296, -71.6469182), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi AMOS
' + '

472, 4E RUE EST
' + 'AMOS, QC  J9T 1Y4

' + '
'; var marker316 = createMarker({ position: new google.maps.LatLng(48.5711497, -78.1048830), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi AMQUI
' + '

33, BOUL. ST-BENOIT
' + 'AMQUI, QC  G5J 2B8

' + '
'; var marker317 = createMarker({ position: new google.maps.LatLng(48.4638721, -67.4251349), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ASBESTOS
' + '

205, 1ERE AVENUE
' + 'ASBESTOS, QC  J1T 1Y3

' + '
'; var marker318 = createMarker({ position: new google.maps.LatLng(45.7747595, -71.9379785), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi BAIE ST-PAUL
' + '

30, RUE RACINE
' + 'BAIE ST-PAUL, QC  G3Z 2R1

' + '
'; var marker319 = createMarker({ position: new google.maps.LatLng(47.4425501, -70.5095854), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi BAIE-COMEAU
' + '

570, BOUL. LAFLECHE
' + 'BAIE-COMEAU, QC  G5C 1C3

' + '
'; var marker320 = createMarker({ position: new google.maps.LatLng(49.2030504, -68.2579200), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi BEAUPORT
' + '

699, RUE CLEMENCEAU
' + 'BEAUPORT, QC  G1C 4N6

' + '
'; var marker321 = createMarker({ position: new google.maps.LatLng(46.8741309, -71.2002979), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi BELOEIL
' + '

175, SIR WILFRID LAURIER
' + 'BELOEIL, QC  J3G 4G8

' + '
'; var marker322 = createMarker({ position: new google.maps.LatLng(45.5520250, -73.2142750), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi BROSSARD-DU QUARTIER
' + '

1035, BOUL. DU QUARTIER
' + 'BROSSARD, QC  J4Z 0E3

' + '
'; var marker323 = createMarker({ position: new google.maps.LatLng(45.4569101, -73.4189371), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi CAP-DE-LA-MADELEINE
' + '

320, RUE BARKOFF
' + 'CAP-DE-LA-MADELEINE, QC  G8T 2A3

' + '
'; var marker324 = createMarker({ position: new google.maps.LatLng(46.3713536, -72.5581776), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi CHAMBLY
' + '

1601, BOUL. DE PERIGNY
' + 'CHAMBLY, QC  J3L 1W9

' + '
'; var marker325 = createMarker({ position: new google.maps.LatLng(45.4463506, -73.2846059), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi CHÂTEAUGUAY
' + '

114, BOUL. ST-JEAN BAPTISTE
' + 'CHATEAUGUAY, QC  J6K 3A9

' + '
'; var marker326 = createMarker({ position: new google.maps.LatLng(45.3576447, -73.7150378), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi CHIBOUGAMAU
' + '

885, 3E RUE - ROUTE 167
' + 'CHIBOUGAMAU, QC  G8P 1R3

' + '
'; var marker327 = createMarker({ position: new google.maps.LatLng(49.9018742, -74.3899486), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi CHICOUTIMI
' + '

180, BOUL. BARRETTE
' + 'CHICOUTIMI, QC  G7H 7W8

' + '
'; var marker328 = createMarker({ position: new google.maps.LatLng(48.394496, -71.074386), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi CHICOUTIMI-NORD
' + '

681, STE-GENEVIEVE
' + 'CHICOUTIMI-NORD, QC  G7G 4Z4

' + '
'; var marker329 = createMarker({ position: new google.maps.LatLng(48.4439159, -71.0803528), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi D\'ESTIMAUVILLE
' + '

1699, ESTIMAUVILLE
' + 'QUEBEC, QC  G1J 5E2

' + '
'; var marker330 = createMarker({ position: new google.maps.LatLng(46.8435762, -71.2146495), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi DONNACONA
' + '

482, ROUTE 138
' + 'DONNACONA, QC  G3M 1C2

' + '
'; var marker331 = createMarker({ position: new google.maps.LatLng(46.6801778, -71.7192676), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi FLEUR DE LYS
' + '

552, BOUL WILFRID-HAMEL
' + 'QUEBEC, QC  G1M 3E3

' + '
'; var marker332 = createMarker({ position: new google.maps.LatLng(46.82307070036889, -71.25360631415641), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi GATINEAU
' + '

25, DE LA SAVANE
' + 'GATINEAU, QC  J8T 8A4

' + '
'; var marker333 = createMarker({ position: new google.maps.LatLng(45.4751124, -75.7039768), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi GATINEAU, VANIER (AYLMER)
' + '

545, CHEMIN VANIER
' + 'GATINEAU, QC  J9J 3Z4

' + '
'; var marker334 = createMarker({ position: new google.maps.LatLng(45.4173330, -75.8083764), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi GRANBY
' + '

370, RUE ST-JACQUES
' + 'GRANBY, QC  J2G 3N4

' + '
'; var marker335 = createMarker({ position: new google.maps.LatLng(45.3992080, -72.7351899), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi GRANDES FOURCHES
' + '

150, DES GRANDES-FOURCHES SUD
' + 'SHERBROOKE, QC  J1H 5G5

' + '
'; var marker336 = createMarker({ position: new google.maps.LatLng(45.3997890, -71.8864700), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi GRAND-MÈRE
' + '

2650, 6IEME AVENUE
' + 'GRAND-MERE, QC  G9T 2L4

' + '
'; var marker337 = createMarker({ position: new google.maps.LatLng(46.6030077, -72.7121486), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi HULL
' + '

300, BOUL ST-JOSEPH
' + 'HULL, QC  J8Y 3Y3

' + '
'; var marker338 = createMarker({ position: new google.maps.LatLng(45.4390712, -75.7317851), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi JOLIETTE
' + '

909, BOUL. FIRESTONE
' + 'JOLIETTE, QC  J6E 2W4

' + '
'; var marker339 = createMarker({ position: new google.maps.LatLng(46.0323510, -73.4305848), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LA BAIE
' + '

2100, RUE BAGOT
' + 'LA BAIE, QC  G7B 3Z3

' + '
'; var marker340 = createMarker({ position: new google.maps.LatLng(48.3365052, -70.8963825), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LA PRAIRIE
' + '

50, BOUL. TASCHEREAU
' + 'LA PRAIRIE, QC  J5R 4V3

' + '
'; var marker341 = createMarker({ position: new google.maps.LatLng(45.4220328, -73.4866877), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LA TUQUE
' + '

1200, BOUL. DUCHARME
' + 'LA TUQUE, QC  G9X 3Z9

' + '
'; var marker342 = createMarker({ position: new google.maps.LatLng(47.4183536, -72.7842696), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LAC MÉGANTIC
' + '

3500, RUE LAVAL
' + 'LAC MEGANTIC, QC  G6B 2X4

' + '
'; var marker343 = createMarker({ position: new google.maps.LatLng(45.5906180, -70.9049965), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LASARRE
' + '

255 - 3E RUE EST
' + 'LASARRE, QC  J9Z 3N7

' + '
'; var marker344 = createMarker({ position: new google.maps.LatLng(48.8060433, -79.1972748), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LEBOURGNEUF
' + '

350, RUE BOUVIER
' + 'CHARLESBOURG, QC  G2T 1R8

' + '
'; var marker345 = createMarker({ position: new google.maps.LatLng(46.8410703, -71.2700831), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LES SAULES
' + '

5150, BOUL. DE L\'ORMIERE
' + 'LES SAULES, QC  G1P 4B2

' + '
'; var marker346 = createMarker({ position: new google.maps.LatLng(46.8198609, -71.3308406), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LÉVIS
' + '

50, RTE PRESIDENT-KENNEDY
' + 'LEVIS, QC  G6V 6W8

' + '
'; var marker347 = createMarker({ position: new google.maps.LatLng(46.7936962, -71.1769895), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi LOUISEVILLE
' + '

550, BOUL ST-LAURENT EST
' + 'LOUISEVILLE, QC  J5V 2R5

' + '
'; var marker348 = createMarker({ position: new google.maps.LatLng(46.2554653, -72.9267223), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Charlesbourg, LOUIS-XIV
' + '

1220, BOUL. LOUIS-XIV
' + 'QUEBEC, QC  G3H 6P2

' + '
'; var marker349 = createMarker({ position: new google.maps.LatLng(46.8701411, -71.2549883), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi MANIWAKI
' + '

170, RUE PRINCIPALE SUD
' + 'MANIWAKI, QC  J9E 1Z7

' + '
'; var marker350 = createMarker({ position: new google.maps.LatLng(46.3751598, -75.9816101), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi MATANE
' + '

595, DU PHARE EST
' + 'MATANE, QC  G4W 1A9

' + '
'; var marker351 = createMarker({ position: new google.maps.LatLng(48.8517229, -67.5088986), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi MONTMAGNY
' + '

101, TACHE OUEST
' + 'MONTMAGNY, QC  G5V 3T8

' + '
'; var marker352 = createMarker({ position: new google.maps.LatLng(46.9813086, -70.5694740), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi NEW RICHMOND
' + '

124, ROUTE 132
' + 'NEW RICHMOND, QC  G0C 2B0

' + '
'; var marker353 = createMarker({ position: new google.maps.LatLng(48.1759259, -65.8467609), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi PLESSISVILLE
' + '

1877, RUE BILODEAU
' + 'PLESSISVILLE, QC  G6L 5N2

' + '
'; var marker354 = createMarker({ position: new google.maps.LatLng(46.2189328, -71.7633424), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi RICHMOND
' + '

44, RUE CRAIG
' + 'RICHMOND, QC  J0B 2H0

' + '
'; var marker355 = createMarker({ position: new google.maps.LatLng(45.6576120, -72.1409400), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi RIMOUSKI, JESSOP
' + '

419, BOUL. JESSOP
' + 'RIMOUSKI, QC  G5L 7Y5

' + '
'; var marker356 = createMarker({ position: new google.maps.LatLng(48.4680049, -68.5159171), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi RIVIÈRE-DU-LOUP
' + '

215, BOUL. HOTEL DE VILLE
' + 'RIVIERE-DU-LOUP, QC  G5R 4Y2

' + '
'; var marker357 = createMarker({ position: new google.maps.LatLng(47.8283517, -69.5478025), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ROBERVAL
' + '

150, AVENUE ST-ALPHONSE
' + 'ROBERVAL, QC  G8H 3P8

' + '
'; var marker358 = createMarker({ position: new google.maps.LatLng(48.516662387289195, -72.2238150738065), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi SEPT-ÎLES
' + '

1005, BOUL. LAURE
' + 'SEPT-ILES, QC  G4R 4S6

' + '
'; var marker359 = createMarker({ position: new google.maps.LatLng(50.2263310, -66.3941915), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi SHAWINIGAN
' + '

1643, RUE D\'YOUVILLE
' + 'SHAWINIGAN, QC  G9N 8M8

' + '
'; var marker360 = createMarker({ position: new google.maps.LatLng(46.5559232, -72.7521273), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi SOREL
' + '

450, BOUL. POLIQUIN
' + 'SOREL-TRACY, QC  J3P 7R5

' + '
'; var marker361 = createMarker({ position: new google.maps.LatLng(46.0232721, -73.1036966), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ST-AUGUSTIN
' + '

130, ROUTE RACETTE
' + 'ST-AUGUSTIN-DESMAURES, QC  G3A 1W1

' + '
'; var marker362 = createMarker({ position: new google.maps.LatLng(46.7404687, -71.4675253), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ST-CONSTANT
' + '

400, ROUTE 132 - SUITE 100
' + 'ST-CONSTANT, QC  J5A 2J8

' + '
'; var marker363 = createMarker({ position: new google.maps.LatLng(45.3930727, -73.5815555), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi STE-MARIE-DE-BEAUCE
' + '

1030, BOUL. VACHON NORD
' + 'STE-MARIE-DE-BEAUCE, QC  G6E 1M5

' + '
'; var marker364 = createMarker({ position: new google.maps.LatLng(46.4522209, -71.0321474), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ST-GEORGES DE BEAUCE
' + '

8200, BOUL. LACROIX
' + 'ST-GEORGES DE BEAUCE, QC  G5Y 2B5

' + '
'; var marker365 = createMarker({ position: new google.maps.LatLng(46.1338550, -70.7022509), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ST-HYACINTHE
' + '

15000, AVENUE ST-LOUIS
' + 'ST-HYACINTHE, QC  J2T 3E2

' + '
'; var marker366 = createMarker({ position: new google.maps.LatLng(45.6293791, -72.9377104), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi ST-JEAN RICHELIEU
' + '

1000, BOUL. DU SEMINAIRE NORD
' + 'ST-JEAN-SUR-RICHELIEU, QC  J3A 1E5

' + '
'; var marker367 = createMarker({ position: new google.maps.LatLng(45.3362524, -73.2698640), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi THETFORD MINES
' + '

805, BOUL. FRONTENAC EST
' + 'THETFORD MINES, QC  G6G 6L5

' + '
'; var marker368 = createMarker({ position: new google.maps.LatLng(46.1127106, -71.3014969), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi TROIS-RIVIÈRES
' + '

5875, BOUL. JEAN XXIII
' + 'TROIS-RIVIERES OUEST, QC  G8Y 4N8

' + '
'; var marker369 = createMarker({ position: new google.maps.LatLng(46.3302107, -72.5928051), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi VAL BÉLAIR
' + '

1065, BOUL. PIE XI NORD
' + 'VAL-BELAIR, QC  G3K 1Y5

' + '
'; var marker370 = createMarker({ position: new google.maps.LatLng(46.8553182, -71.4179855), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi VAL D\'OR
' + '

1500, CHEMIN SULLIVAN
' + 'VAL D\'OR, QC  J9P 1M1

' + '
'; var marker371 = createMarker({ position: new google.maps.LatLng(48.1058851, -77.8055279), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi VALLEYFIELD, Dufferin
' + '

70, RUE DUFFERIN
' + 'VALLEYFIELD, QC  J6S 1Y2

' + '
'; var marker372 = createMarker({ position: new google.maps.LatLng(45.2625041, -74.1289819), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi VICTORIAVILLE
' + '

120, BOUL. ARTHABASKA OUEST
' + 'VICTORIAVILLE, QC  G6P 6S2

' + '
'; var marker373 = createMarker({ position: new google.maps.LatLng(46.0655156, -71.9299575), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie ANC-LORETTE
' + '

1201, BOUL. DUPLESSIS
' + 'QUÉBEC, QC  G2G 2B4

' + '
'; var marker374 = createMarker({ position: new google.maps.LatLng(46.7869749, -71.3490883), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie BUCKINGHAM
' + '

130, AVENUE LEPINE
' + 'GATINEAU (BUCKINGHAM), QC  J8L 4M4

' + '
'; var marker375 = createMarker({ position: new google.maps.LatLng(45.5738478, -75.4078765), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie DRUMMONDVILLE
' + '

1870, BOUL. ST-JOSEPH
' + 'DRUMMONDVILLE, QC  J2B 1R3

' + '
'; var marker376 = createMarker({ position: new google.maps.LatLng(45.8799187, -72.4873331), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie JONQUIÈRE
' + '

3880, BOUL. HARVEY
' + 'JONQUIERE, QC  G7X 8R6

' + '
'; var marker377 = createMarker({ position: new google.maps.LatLng(48.4139663, -71.2519517), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie SHERBROOKE
' + '

3025, PORTLAND
' + 'SHERBROOKE, QC  J1L 2Y7

' + '
'; var marker378 = createMarker({ position: new google.maps.LatLng(45.4044896, -71.9512674), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie ST-LUC
' + '

200, BOUL. OMER-MARCIL
' + 'ST-JEAN-SUR-RICHELIEU, QC  J2W 2V1

' + '
'; var marker379 = createMarker({ position: new google.maps.LatLng(45.3316114, -73.2931863), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie ST-ROMUALD
' + '

940, CHEMIN DU SAULT
' + 'ST-ROMUALD, QC  G6W 5M6

' + '
'; var marker380 = createMarker({ position: new google.maps.LatLng(46.73013976118201, -71.27220392845702), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Trois-Rivières
' + '

3725 Bd des Forges
' + 'Trois-Rivières, QC  G8Y 4P2

' + '
'; var marker381 = createMarker({ position: new google.maps.LatLng(46.3536995, -72.5839473), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Gatineau
' + '

800, Boul. Maloney Ouest
' + 'Gatineau, QC  J8T 3R6

' + '
'; var marker382 = createMarker({ position: new google.maps.LatLng(45.4802470, -75.6826755), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie Granby
' + '

80 Rue Saint-Jude Nord
' + 'Granby, QC  J2J 2T7

' + '
'; var marker383 = createMarker({ position: new google.maps.LatLng(45.4181996, -72.7530265), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi & Cie St-Hyacinthe
' + '

2000, boul. Casavant Ouest
' + 'Saint-Hyacinthe, QC  J2S 7K2

' + '
'; var marker384 = createMarker({ position: new google.maps.LatLng(45.6343927, -72.9686314), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi St-Hilaire
' + '

345 Boulevard Sir Wilfrid Laurier
' + 'St-Hilaire, QC  J3H 3N8

' + '
'; var marker385 = createMarker({ position: new google.maps.LatLng(45.5631458, -73.1895232), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi St-Basile-le-Grand
' + '

2501, boul. du Millénaire
' + 'St-Basile-le-Grand, QC  J3N 1Z8

' + '
'; var marker386 = createMarker({ position: new google.maps.LatLng(45.5257637, -73.3034571), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi Drummondville St-Joseph
' + '

325, boul. St-Jospeh
' + 'Drummondville, QC  J2C 3A3

' + '
'; var marker387 = createMarker({ position: new google.maps.LatLng(45.8965475, -72.5218586), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
Maxi L\'Ormière
' + '

9550, de L\'Ormière
' + 'Québec, QC  G2B 3Z6

' + '
'; var marker388 = createMarker({ position: new google.maps.LatLng(46.8373046, -71.3563507), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_blue.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

1021-101, ave. Du Palais
' + 'Saint-Joseph-de-Beauce, QC  G0S 2V0

' + '
'; var marker389 = createMarker({ position: new google.maps.LatLng(46.302827, -70.872566), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

1703, route 105
' + 'Chelsea, QC  J9B 0B9

' + '
'; var marker390 = createMarker({ position: new google.maps.LatLng(45.597733, -75.8991598), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

188, Route 204
' + 'Ste-Justine, QC  G0R 1Y0

' + '
'; var marker391 = createMarker({ position: new google.maps.LatLng(46.405884, -70.353186), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

1950, boul. Dionne
' + 'St-Georges, QC  G5Y 3W8

' + '
'; var marker392 = createMarker({ position: new google.maps.LatLng(46.114483, -70.675835), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

201, de la Falaise
' + 'Temiscaming, QC  J0Z 3R0

' + '
'; var marker393 = createMarker({ position: new google.maps.LatLng(46.734072, -79.066209), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

2305, ch. Rockland
' + 'Mont-Royal, QC  H3P 3E9

' + '
'; var marker394 = createMarker({ position: new google.maps.LatLng(45.5294445, -73.6466001), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

315, blv. Robert-Bourassa
' + 'Montréal, QC  H3C 2M2

' + '
'; var marker395 = createMarker({ position: new google.maps.LatLng(45.497397, -73.558264), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

379, blv. Arthur-Sauve
' + 'Saint-Eustache, QC  J7P 2B1

' + '
'; var marker396 = createMarker({ position: new google.maps.LatLng(45.5632902, -73.9019501), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

39, blv. de la Cite-des-Jeunes
' + 'Vaudreuil-Dorion, QC  J7V 0N3

' + '
'; var marker397 = createMarker({ position: new google.maps.LatLng(45.4111483, -74.0294212), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

4945, rue des Patriotes, suite 100
' + 'Contrecoeur, QC  J0L 1C0

' + '
'; var marker398 = createMarker({ position: new google.maps.LatLng(45.851256, -73.227357), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5055, rue Jean-Talon ouest
' + 'Montréal, QC  H4P 1W7

' + '
'; var marker399 = createMarker({ position: new google.maps.LatLng(45.496264, -73.651236), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5290 rue Molson - local 103
' + 'Montréal, QC  H1Y 0C5

' + '
'; var marker400 = createMarker({ position: new google.maps.LatLng(45.543527, -73.576293), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5400, rue Sherbrooke Est
' + 'Montréal, QC  H1V 1A1

' + '
'; var marker401 = createMarker({ position: new google.maps.LatLng(45.5691761, -73.5514569), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

5501, ch. de la Cote saint-Luc
' + 'Montréal, QC  H3X 2C6

' + '
'; var marker402 = createMarker({ position: new google.maps.LatLng(45.479255, -73.62599), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

560, ch. Des Hauteurs
' + 'Saint-Hippolyte, QC  J8A 1G3

' + '
'; var marker403 = createMarker({ position: new google.maps.LatLng(45.8538513, -74.0187988), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

575, route Begin
' + 'St-Anselme, QC  G0R 2N0

' + '
'; var marker404 = createMarker({ position: new google.maps.LatLng(46.6369544, -70.981548), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

585, ch. Vanier
' + 'Gatineau, QC  J9J 0E9

' + '
'; var marker405 = createMarker({ position: new google.maps.LatLng(45.4199861, -75.8101599), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

59, route Campagna
' + 'St-Henri de Levis, QC  G0R 3E0

' + '
'; var marker406 = createMarker({ position: new google.maps.LatLng(46.699419, -71.071447), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

60, Route 202
' + 'Lacolle, QC  J0J 1J0

' + '
'; var marker407 = createMarker({ position: new google.maps.LatLng(45.072214, -73.356678), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

655, rue de la Visitation
' + 'Saint-Charles-Borromée, QC  J6E 4P9

' + '
'; var marker408 = createMarker({ position: new google.maps.LatLng(46.050956, -73.469249), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

675, rue de la Montagne
' + 'Valcourt, QC  J0E 2L0

' + '
'; var marker409 = createMarker({ position: new google.maps.LatLng(45.488858, -72.305193), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

771, ave. Royale
' + 'Beauport, QC  G1E 1Z1

' + '
'; var marker410 = createMarker({ position: new google.maps.LatLng(46.862032, -71.187963), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

82, blv. De Bromont, local 101
' + 'Bromont, QC  J2L 2K3

' + '
'; var marker411 = createMarker({ position: new google.maps.LatLng(45.3228524, -72.6456225), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

825, 4e Avenue
' + 'Québec, QC  G1J 3A6

' + '
'; var marker412 = createMarker({ position: new google.maps.LatLng(46.82612, -71.227285), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA Extra
' + '

860, ave. Gabriel Brissette
' + 'Berthierville, QC  J0K 1A0

' + '
'; var marker413 = createMarker({ position: new google.maps.LatLng(46.087296, -73.1973879), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); var contentString = '
' + '
IGA
' + '

911, 150e Rue
' + 'St-Georges Est, QC  G5Y 0J1

' + '
'; var marker414 = createMarker({ position: new google.maps.LatLng(46.11074, -70.651596), map: map, icon: { labelOrigin: new google.maps.Point(7, -6), // Set this value for position of label on marker... url: "images/mm_20_red.png" }, // label: { // text: "", // fontSize: "14px", // color: "#000000", // fontFamily: "montserrat" // } }, contentString); }); // listen for the window resize event & trigger Google Maps to update too window.onresize = function() { var currCenter = map.getCenter(); google.maps.event.trigger(map, 'resize'); map.setCenter(currCenter); };