Marker size

Good morning,
you can increase the size of the svg marker

Thanks

1 Like

Where do I find this function?

Thanks

1 Like

Hey @user16448, welcome to our Community! :dizzy:

I’m glad to say that you can change the markers’ size using the following CSS code:

[class*="marker__Container-sc"] {
  transform-origin: center bottom;
  transform: scale(3);
}

[class*="marker__Container-sc"]:hover {
  transform: scale(4);
}

You need to add this code to the Custom CSS section:

Please let me know how it goes :innocent: