views:

12

answers:

1

I have a google map on my asp.net page. on which its showing image(marker) on cityname . please tell me how can i fire event onclick on that marker.

A: 

GEvent.addListener(marker, "click", function(point) {
this.openInfoWindowHtml("" + this.value + "");}); return marker; }

developer 2010