Hi there,
It works in all other browsers - not in Google Chrome (12.0.742.100 and 14.0.794.0 (Canary)): Here the Marker moves for about two minutes or so - then Chrome crashes ("Aw, snap").
It's a setPosition many, many times on a marker.
The memory-usage builds up, is cut down once and then it builds up again until it crashes.
Code snippet:
...
--- SOME STANDARD INIT CODE ---
// Start interval
setInterval("setpoint()", 40);
}
// move point
function setpoint() {
// Set new position
marker.setPosition(new google.maps.LatLng(lat, lng));
// Update position
lat += 0.0000001;
lng += 0.0000001;
}
...
Ideas?
Kind regards
Jens