40
Views
2
Comments
Solved
[OutSystems Maps] Giving the OutSystems map a border radius
outsystems-maps
Reactive icon
Forge asset by OutSystems
Application Type
Reactive

Hi All,

I'm having trouble with applying a border radius to the OutSystems Maps widget and I was wondering what I'm missing. My goal is to give the "Maps\Map" block a border radius of 4px like this:

However, both when applying the border radius to the surrounding container as well as inputting it directly on the Chrome Browser Developer Tool it does not change. How can I apply the border radius as a style to the map itself?

2022-11-12 11-28-30
Gonçalo Martins
Staff
Solution

Hello @Bart van Orizande 

You can add this to the class runtime-map-container in order to style it the way you mentioned:

.runtime-map-container {
    border: 4px solid blue;
    border-radius: 10px;
}

It will look like this:

Hope it helps!

Cheers,
GM

UserImage.jpg
Bart van Orizande

Thanks Gonçalo !


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.