| 7477 | }); |
| 7478 | } |
| 7479 | function newPathLayer(id, data) { |
| 7480 | if (!data) return null; |
| 7481 | return new (0, _base.base).layers.PathLayer({ |
| 7482 | id, |
| 7483 | data, |
| 7484 | billboard: true, |
| 7485 | widthScale: 1, |
| 7486 | widthMinPixels: 2, |
| 7487 | widthUnits: "pixels", |
| 7488 | coordinateSystem: (0, _base.base).deck.COORDINATE_SYSTEM.CARTESIAN, |
| 7489 | getPath: (o)=>o.positions, |
| 7490 | getColor: (o)=>o.strokeColor, |
| 7491 | getWidth: (o)=>o.strokeWidth |
| 7492 | }); |
| 7493 | } |
| 7494 | function newPolygonLayer(id, data) { |
| 7495 | if (!data) return null; |
| 7496 | let newlayer = new (0, _base.base).layers.PolygonLayer({ |