use of io.jmix.mapsui.component.layer.style.PolygonStyle in project jmix-docs by Haulmont.
the class Canvas method onDrawPolygonClick.
@Subscribe("drawPolygon")
private void onDrawPolygonClick(Button.ClickEvent event) {
CanvasLayer canvasLayer = map.getCanvas();
PolygonStyle style = new PolygonStyle().setFillColor("#08a343").setStrokeColor("#004912");
canvasLayer.drawPolygon(polygon -> polygon.setStyle(style));
}
Aggregations