Fixed
Status Update
Comments
zw...@google.com <zw...@google.com>
zw...@google.com <zw...@google.com> #2
Can you track these events by assigning event listeners on the map container? For
example:
google.maps.event.addDomListener('map_canvas', 'mousemove', function(e) {
// code here
});
Granted, it'll take a bit more code on your end to determine whether the mouse is
within map container boundaries, but this seems like a feature you can add yourself.
example:
google.maps.event.addDomListener('map_canvas', 'mousemove', function(e) {
// code here
});
Granted, it'll take a bit more code on your end to determine whether the mouse is
within map container boundaries, but this seems like a feature you can add yourself.
Description
To reproduce, change the doc's example (
var taxiData = [
{location: new google.maps.LatLng(37.782551, -122.445368), weight: 1000}
];
Here's a gist to reproduce the issue: