> Hi There,
> Could you please try using the mouseOutTolerance property
> (GPolylineOptions)
> http://code.google.com/apis/maps/documentation/reference.html#GPolyli...
> Regards,
> Anuragwww.H1N1SwineFluIndia.org
> On Nov 6, 11:30 pm, Peej <drpeterhar...@gmail.com> wrote:
> > I am new to Google maps API and have managed to work out most of what
> > I want but what should be a simple problem isn't working for me and I
> > would appreciate some help to tell me where I am going wrong.
> > I want to make the cursor change to a pointing finger when over a
> > polyline and then change back when moved away. I thought this would
> > be simple and used this code:
> > GEvent.addListener(polyline, "mouseover", function(){
> > map.getDragObject().setDraggableCursor("pointer");
> > });
> > GEvent.addListener(polyline, "mouseout", function()
> > { map.getDragObject().setDraggableCursor("url(http://
> > maps.google.com/intl/en_us/mapfiles/openhand.cur),default");
> > });
> > However what happens is that the first time I move it over the line
> > the cursor changes as expected but has to be moved a long way away
> > from the line before it will change back. Any subsequent cursor moves
> > will change the cursor into a pointer again long before it reaches the
> > line
> > Here is a link to a demonstration map that illustrates thiswww.gp-it.co.uk/map/test.htm
> > I have tried it with IE8 and Chrome.
> > Peter Harris