Yes. When you added your markers originally, your probably did something like:
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Hello World!'
});
The map already existed (map: map), and you added markers. You can do the same thing later to add more markers.