Wasn't it geo123 who wrote: > >These approaches - > >map.getDragObject().setDraggableCursor(foo); >map.getDragObject().setDragingCursor(foo); > >would definitely change the map cursor. > >But I want to change the cursor when the user 'mouse over' on any >feature of 'GTileLayer'
The problem is that there's no way for Javascript to detect "features" in your GTileLayer images, so you have to supply that information. You can either create a list of feature locations in an array, and scan that array, or you could place an invisible object (e.g. a polygon) that supports the "mouseover" event on top of each feature. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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 -~----------~----~----~----~------~----~------~--~---
