I'm embedding a Google map into a web application, this is what I have and it shows one location with a description. I'm trying to add a further 2 locations to the map, would anyone have an idea how to do this?
<script>
function myMap() {
var myCenter = new google.maps.LatLng(55.1493166,-6.6784082);
var mapCanvas = document.getElementById("map");
var mapOptions = {center: myCenter, zoom: 8};
var map = new google.maps.Map(mapCanvas, mapOptions);
var marker = new google.maps.Marker({position:myCenter});
marker.setMap(map);
var infowindow = new google.maps.InfoWindow({
content: "Ulster Univeristy, Sports Centre, Coleraine"
});
infowindow.open(map,marker);
}