| | |
| | | export const LineStyles = { |
| | | const defaultLineStyle = { |
| | | fill: true, |
| | | weight: 3, |
| | | fillColor: '#73b2ff', |
| | | color: '#73b2ff', |
| | | fillOpacity: 0.2, |
| | | opacity: 1, |
| | | dashArray: '10,4', |
| | | dashSpeed: -10, |
| | | size: [20, 20] |
| | | } |
| | | |
| | | const customStyles = { |
| | | pipeline: { |
| | | fill: true, |
| | | weight: 2, |
| | | fillColor: '#06cccc', |
| | | color: '#06cccc', |
| | | fillOpacity: 0.2, |
| | | opacity: 0.8, |
| | | dashArray: '10,4', |
| | | dashSpeed: -10 |
| | | } |
| | | } |
| | | export const PointStyles = { |
| | | pipeline: { |
| | | fill: true, |
| | | weight: 2, |
| | | fillColor: '#06cccc', |
| | | color: '#06cccc', |
| | | fillOpacity: 0.2, |
| | | opacity: 0.8, |
| | | dashArray: '10,4', |
| | | dashSpeed: -10 |
| | | } |
| | | |
| | | export default { |
| | | defaultLineStyle, |
| | | customStyles |
| | | } |