I am using the following:
var SampleMarker = new google.maps.Marker({
position: new google.maps.LatLng(51.379, -113.53),
map: map,
title: "Hello World!"
});
To add a marker to my map, but how would I use the same to say iterate over an array of latlngs? I wish to add multiple markers.