-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can I change the icon of the feature while using the featureAnimation.Path? #1036
Comments
I've added a new anim.on('drawing', function(e) {
if (e.time > 5000) {
e.style = styleRed;
} else {
e.style = styleBlue;
}
}) Tell me if it's good for you. |
I fix it! |
Thank you so much! |
v4.0.17 is out |
Thank you. I'm trying out the features you updated. |
Do you have an online example? |
I'm using featureAnimation.Path because I want it to work as an animation whenever the coordinates of feature change on the map.
However, among the functions I have to implement, the icon of the feature must change if I move more than a certain distance.
Is there a way to implement this feature?
The text was updated successfully, but these errors were encountered: