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