I have a table that I\'ve made sortable using the jQuery plugin Tablesorter 2.0. On the same page, I have a Google Map that displays a marker for each item in the table. Now, I
Take a look at this sample.
This is how you subscribe to the client event.
@( Html.Googlemap() .Name("map") .Markers(m => m.Add() .Id("marker-1") .Title("Hello World!")) .ClientEvents(events => events.OnMapLoaded("onMapLoadHandler")) ) My Marker
and this is how to trigger the map click.