I noticed a couple things that could be improved with the emulator:
- Shadow Direction Adjustment
Used a Photo Editing Software, I overlayed a WeatherStar XL v3 image on top and put some text on so here is what I came up with:
The shadow direction needs to be at 180°, with a distance of 20px, with a blur radius of 12px.
Example:
.current-conditions .labels { /* Other Styles */ text-shadow: 0px 20px 12px black; }
Screenshots:
- Map Text Adjustments
I did make a comment on JensonWX's YouTube Video, and I said that you could modify some of the Map styles (Hopefully Works with MapLibre):
map.setLayoutProperty(
'settlement-label-subdivision',
'text-font',
['Interstate Bold'] /* Or the font the WeatherStar XL Map Uses */
);
map.setLayoutProperty(
'settlement-minor-label',
'text-font',
['Interstate Bold']
);
map.setLayoutProperty(
'settlement-major-label',
'text-font',
['Interstate Bold']
);
That's all I have, keep up the good work!
I noticed a couple things that could be improved with the emulator:
Used a Photo Editing Software, I overlayed a WeatherStar XL v3 image on top and put some text on so here is what I came up with:
The shadow direction needs to be at 180°, with a distance of 20px, with a blur radius of 12px.
Example:
.current-conditions .labels { /* Other Styles */ text-shadow: 0px 20px 12px black; }Screenshots:
I did make a comment on JensonWX's YouTube Video, and I said that you could modify some of the Map styles (Hopefully Works with MapLibre):
That's all I have, keep up the good work!