You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you set showAllOnStart and alwaysShowDate, at the beginning the timestamp is not shown under the slider, until the slider is moved for the first time. This is because at the beginning, setting the timestamp is through the following code:
And this code does not consider the cases where markers don't have feature, unlike the code which is responsible for showing the timestamp when the slider is moved.
To fix this, I simply had to move the code used to set the timestamp in the slide function into a separate function, and then call it both from inside of the if statement above, and also from inside the slide function, and that fixed the issue, but I could not upload a patch/pull request for this issue.
Any idea how I can get this fixed? In case someone else wants to use this as well in future?
Cheers,
M.
The text was updated successfully, but these errors were encountered:
Thank you very much! I would like to fix it on my map as well but I am not savvy enough with coding to fix it myself with your instruction. Please upload a patch.
Hi there
When you set showAllOnStart and alwaysShowDate, at the beginning the timestamp is not shown under the slider, until the slider is moved for the first time. This is because at the beginning, setting the timestamp is through the following code:
And this code does not consider the cases where markers don't have feature, unlike the code which is responsible for showing the timestamp when the slider is moved.
To fix this, I simply had to move the code used to set the timestamp in the slide function into a separate function, and then call it both from inside of the if statement above, and also from inside the slide function, and that fixed the issue, but I could not upload a patch/pull request for this issue.
Any idea how I can get this fixed? In case someone else wants to use this as well in future?
Cheers,
M.
The text was updated successfully, but these errors were encountered: