I am following the MVCObject binding example from this page:
http://code.google.com/apis/maps/articles/mvcfun.html
I want to change the color of the circle a
This works for me:
google.maps.event.addListener(circle, 'click', function (e) { clearTimeout(this.doNotTriggerTwiceTimeout); this.doNotTriggerTwiceTimeout = setTimeout(function(){ alert('circle clicked'); }, 100); });