-
Notifications
You must be signed in to change notification settings - Fork 817
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
feat(MarkerManager): set an opacity to marker. #523
Conversation
@TSHiYK Looking good! 👍 |
@TSHiYK thanks! can you change the commit message from fix to feat? Than we can merge it! good job. |
@SebastianM Thanks for reply. I fixed the commit message. |
@@ -79,6 +79,11 @@ export class SebmGoogleMapMarker implements OnDestroy, OnChanges, AfterContentIn | |||
openInfoWindow: boolean = true; | |||
|
|||
/** | |||
* The marker's opacity between 0.0 and 1.0. | |||
*/ | |||
opacity: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we set the default here?: opacity: number = 1;
Sorry, found one more little thing. When the default is 1, we can merge it. |
@SebastianM Done! |
Any way to animate this opacity other than setInterval? |
No description provided.