@jantold Hi, go to html inspector F12, and find class named: progress-bar and set it to progress-bar2 for example. If it fix the problem it means that you are using another library which overrides progress-bar class behaviour.
Greetings
@jantold Hi, go to html inspector F12, and find class named: progress-bar and set it to progress-bar2 for example. If it fix the problem it means that you are using another library which overrides progress-bar class behaviour.
Greetings
@jantold IF it changed then yes it does impact leaflet library. Go to inspector again F12, select the div with class progress-bar, then look at Styles tab and find what library overrides the leaflet style. In my case it was bootstrap who causes the problem. I had to bypass it by creating global style for progress-bar like this:
.progress-bar {
overflow: visible;
background-color: transparent;
text-align: unset;
}
@jantold IF it changed then yes it does impact leaflet library. Go to inspector again F12, select the div with class progress-bar, then look at Styles tab and find what library overrides the leaflet style. In my case it was bootstrap who causes the problem. I had to bypass it by creating global style for progress-bar like this:
.progress-bar {
overflow: visible;
background-color: transparent;
text-align: unset;
}
@jantold Hi, go to html inspector F12, and find class named: progress-bar and set it to progress-bar2 for example. If it fix the problem it means that you are using another library which overrides progress-bar class behaviour.
Greetings
Hello,
I have added map using the script from the:
https://api.windy.com/map-forecast/examples/hello-world.
The problem is I don't see temperature values on the map. How to display them ? I could not find the option in documentation.
Greetings