Does anybody have an update on this issue as I've had the same problem with code I developed against V3.
Is it likely I have to change any parameters/settings on my Markers I have created as I find my the environment crashes in an internal "mouseout" event shortly after calling "setIcon" within the DragStart event handler. Regards Dave On May 31, 3:17 pm, InfoMail InfoMail <mirk...@gmail.com> wrote: > It seems that setIcon, on IE9, generates a mouseout event (tested on Google > map API v3.4 and 3.5; on v3.3 it works fine!). > In the detail: > > google.maps.event.addListener(item.marker, 'mouseover', function(event) { > onMarkerOver(event, item); > }); > > google.maps.event.addListener(item.marker, 'mouseout', function(event) { > onMarkerOut(event, item); > }); > > function canvasIconGenerate() { > canvas = document.createElement('canvas'); > canvas.width = 64; > canvas.height = 64; > ctx = canvas.getContext('2d'); > <canvas commands> > return canvas.toDataURL('image/png'); > > } > > function onMarkerOver(item) { > newIcon = new google.maps.MarkerImage(canvasIconGenerate()); > iterm.marker.setIcon(newIcon) > > > > > > > > } -- 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 google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.