On 12 November 2010 13:00, xelawho <[email protected]> wrote:
> thanks for the quick reply, Andrew.
>
> but all the zones have the same infowindow data - it sits below all
> the points information, starting the <tab> tab.

They don't; only the first one has <tab> elements. Are you having
issues with versions of the XML file?

> that line at 219 I put in there because I wanted to get the mouse to
> change to a pointer when it moved over a polygon, to show that it was
> clickable. If you could suggest a nicer way to do it, I'd be very
> appreciative.

How about -- untested --
  GEvent.addListener(zone, 'mouseover', function(){ });
which does at least provide a handler function. The function doesn't
need to do anything if the API changes the cursor by itself.

If it doesn't actually change the cursor, then you will need to that,
and change it back on mouseout. Put the code to do that inside the
handler function.
http://www.google.co.uk/search?q=javascript+change+cursor

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