Try something like this:
developers.google.com/maps/documentation...vents#EventListeners
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
window.setTimeout(function() { // A little time for the map to initialize
var mapSGQA = {SGQ};
// Define the map and marker
var currentMap = gmaps[''+mapSGQA+'_c'];
var currentMarker = gmaps['marker__'+mapSGQA+'_c'];
// Listener on the map "click" event
google.maps.event.addListener(currentMap, 'click', function() {
alert(currentMarker.getPosition());
});
}, 1000);
});
</script>
developers.google.com/maps/documentation...vents#EventListeners