I used the animation for symbols on polylines according to this answer that was very useful: Animate symbol on multiple geodesic polylines
What i would like is to have several polylines and generate animation when one is selected and stop animation for the others.
That is, i want to remove symbol and stop animation once it has started with the method mentioned above:
function animateCircle(id) {
var count = 0;
offsetId = window.setInterval(function () {
count = (count+1) % 200;
id.setOptions({
icons: [{
offset: (count/2)+'%'
}]
});
}, 20);
};
I tried another function like this but it didn't work at all:
function stopCircle(id) {
id.setOptions({
icons: [{
offset: '0%'
}]
};
Neither:
function stopCircle(id) {
id.setOptions({
icons: null
};
Thanks.