import { FillStyle, StrokeStyle, Style } from "../../styles"; export const polygonStyle = new Style({ fill: new FillStyle({ fillType: "color", opacity: 0.3, color: "#00AB3D", }), stroke: new StrokeStyle({ dashArray: [5, 5], opacity: 1, size: 3, strokeType: "color", lineType: "dash", color: "#00AB3D", }), }); export const pointStyle = new Style({ size: 5, fill: new FillStyle({ fillType: "color", color: "#00AB3D", }), });