---
title: style
framework: mapkitjs
role: symbol
role_heading: Instance Property
path: mapkitjs/overlay/style
---

# style

Style properties to apply to the overlay.

## Declaration

```data
get style(): Style;
set style(style: Style);
```

## Discussion

Discussion The following example shows a new style object replacing the current style properties for a circle overlay: circleOverlay.style = new mapkit.Style({     strokeColor: "#777",     lineWidth: 3,     fillColor: "#FFF",     fillOpacity: .2 }); You can also change style properties individually, as this example shows: circleOverlay.style.fillOpacity = .33; circleOverlay.style.lineWidth = 4;

## See Also

### Setting overlay options

- [data](mapkitjs/overlay/data.md)
- [visible](mapkitjs/overlay/visible.md)
- [enabled](mapkitjs/overlay/enabled.md)
- [selected](mapkitjs/overlay/selected.md)
- [map](mapkitjs/overlay/map.md)
