somewhat simple problem(to explain) this time:
i have an array of markers that i equip with eventlisteners thusly:
for (i in markersArray) {
google.maps.event.addListener(markersArray[i], 'click', function() {
//stuff it does
google.maps.event.removeListener(?????) //remove self... but HOW?!
});}
as i mention in the comment, i simply want the listener to be removed once it is clicked.
problem is that i dont know what the handle for the listener is.