I am using this
<Polygon
key={index}
strokeColor={'#00BC6F'}
fillColor={'#00BC6F'}
strokeOpacity= {0.8}
strokeWeight= {3}
paths={borders}
/>
but I don't see any changes
Try like this:
<Polygon options={{
strokeColor: '#babfc7',
fillColor: '#7d899e',
strokeOpacity: 0.28,
strokeWeight: 1,
fillOpacity: 0.1
}}
/>
It worked thanks
Most helpful comment
Try like this: