I made a device tracker that get gps locations from visitors on my website.
Iām mapping these in a map in home assistant, and trying to get the circle smaller
my current map card:
type: map
name: web
entities:
- entity: device_tracker.test_web
dark_mode: true
default_zoom: 2
hours_to_show: 24
card_mod:
style:
ha-map$:
.leaflet-overlay-pane: |
path {
fill: rgb(222, 22, 58);
fill-opacity: 1.0;
stroke: rgb(0, 0, 8);
stroke-opacity: 0.1;
}
.leaflet-marker-icon: |
marker {
width: 28px;
height: 48px;
}
not very familiar with css, but I found another post here to change the path lines color but struggeling with this black circle that overlays the current gps positionā¦trying to make it smaller.
I can edit the circle size with āInspectā and directly set smaller size, but cant figure out the proper
code for card mod.
If anyone could give me some clues with this, would be awesome