Wasn't it buster who wrote:
>I tried to extend MarkerLight to display ToolTips, following your
>tutorial.
>The MouseOver event listener does not fire.
>see my notes in the code.

You could add mouseover and mouseout support to the markerlight.js code
by adding these lines after the code that triggers the click.

  GEvent.addDomListener(div, "mouseover", function(event) {
    GEvent.trigger(me, "mouseover");
  });

  GEvent.addDomListener(div, "mouseout", function(event) {
    GEvent.trigger(me, "mouseout");
  });

-- 
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to