On Oct 19, 7:48 am, rahul dongre <[email protected]> wrote: > Hi, > I need help to show mouseover effect on pushpins that are displaying on > google map after searching
Mouseover simply triggers an event, just a click triggers an event. You need to add a listener for the "mouseover" event, but it's very similar to a "click" event, for which there are a number of examples available. Here's one: http://econym.org.uk/gmap/basic1.htm Note that GEvent.addListener(marker, "click", function() needs to be GEvent.addListener(marker, "mouseover", function() If you have problems, put your page online and give a link. Don't post code here. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
