# Vue2olTyphoonPicketline24
24 小时警戒线
# 基础用法
Copy
# 修改样式
Copy
# Props
名称 | 描述 | 类型 | 取值范围 | 默认值 |
---|---|---|---|---|
coordinates | 警戒线坐标集合 | Array<ol/Coordinate> | - | [ [126.914062, 34.161818], [127.001953, 21.963425], [119.003906, 17.895114], [118.916016, 11.178402], [113.027344, 4.565474], [105.029297, 0], ] |
labelPosition | array | - | [126.914062, 34.161818] | |
styleObj | 样式 | {ol/style/Style} | - | () => { return [ new Style({ stroke: new Stroke({ color: "#eed139", width: 1, }), }), new Style({ text: new Text({ text: "24 小时警戒线", placement: "line", textBaseline: "middle", justify: "center", fill: new Fill({ color: "#e68707", }), font: "bold 14px serif", }), geometry: new LineString([ [126.914062, 34.161818], [127.001953, 21.963425], ]), }), ]; } |