[Google Maps API v3] Re: Hand cursor on mouseover KMLLayer in Google Maps

2011-03-22 Thread M
Couldn't you just apply a click listener to the layer in order to make it show the hand cursor? google.maps.event.addListener(yourLayerObject, 'click', function (kmlMouseEvent) { ...whatever... }); Now whenever you mouseover the area contained in the KML layer, the cursor should turn into a h

[Google Maps API v3] Re: Hand cursor on mouseover KMLLayer in Google Maps

2011-03-11 Thread Rossko
> The problem is that mouseover event does not exist for KMLLayer :( kmlLayer is rendered as image tiles at Google's servers, this makes mouseover difficult to implement. There is an alternative client-side KML parser , GeoXml3 which allows you access to locally created map objects. Tradeoff, pe