Hi Nick,
Here me again... is there a way to add animation to the makers like
goole.maps.event.addListener(item,'click', toggle);
function toggle(){
if(item.getAnimation()!=null){
item.setAnimation(null);
}else{
item.setAnimation(google.maps.Animation.BOUNCE);
}
I try to add in the timemap.js line 1939 (around)
placemark.click.addHandler(function() {
item.openInfoWindow();
/* if ( placemark.item.getAnimation() != null) {
placemark.item.setAnimation(null);
}
else {
placemark.item.setAnimation(google.maps.Animation.BOUNCE);
}*/
});
this give me an error that the object doesn't have method getAnimation, Does the placemark.item is not Google marker object?
or is there any other way of doing this ?
}