Don't think that a mouseover is appropriate to load these oversized
images as quick as the user is able to  move the mouse cursor (with
'oversized' I mean  the size of the files not the dimensions of the
visible pictures).

Anyway, you may chase away your visitors as you like.

There are more than one examples out there showing the procedure. This
is the trick:

Collect your markers in a global array as you already do.

Create a function that triggers the appropriate event of the
appropriate marker in the global array:

 function triggerClick(i) {
  google.maps.event.trigger(markersArray[i], "click");
 }

And call this function from the link outside the map passing the
appropriate array index

<a href="#" onclick="triggerClick(index);return false;">
Open infowindow </a>







On Jul 28, 2:19 am, Bryn Kaufman <[email protected]> wrote:
> I have the following 
> page<http://www.oahure.com/GoogleMapsAPIView_backup2.php?centerMap=%2821.3...>and
>  I want to have the appropriate info window come up when the mousing over
> a row in the table above the map.
>
> I have a working InfoWindow when you click on the icon, but I am not sure
> how to get that InfoWindow to come up when mousing over a row in the table.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to