On Oct 21, 6:02 am, rahul dongre <[email protected]> wrote:
> Sorry to all if i did some thing wrong.
> Here is my code linkhttp://earthnc.rave-staging.com/EarthNC_new/
>
> you can search any thing from the search box, it gives result in two form,
> first place pinpoint on the map  and secondly display the list of result on
> the right side panel.
> Now i have to highlight pinpoint on the map when anybody take mouse over the
> search result list.

You need to add mouseover and mouseout events to your sidebar entries,
when you create them. When you create each entry, you have the index
number available, so your mouseover can do
onmouseover="window['gsearch']['google-'+i].setImage('http://
earthnc.rave-staging.com/EarthNC_new/images/marker.png');"

You push your markers on to that "window[][]" array when you create
them, so that's available in the global context necessary for DOM
events.

I don't think I could have come up with that if you hadn't given a
link.

-- 
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.

Reply via email to