1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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: {
| }
| }
|
| export default {
| defaultLineStyle,
| customStyles
| }
|
|