(inputJson, deckgl)
| 116 | } |
| 117 | |
| 118 | function updateDeck(inputJson, deckgl) { |
| 119 | const results = jsonConverter.convert(inputJson); |
| 120 | deckgl.setProps(results); |
| 121 | } |
| 122 | |
| 123 | function missingProps(oldProps, newProps) { |
| 124 | return oldProps.filter(op => op && op.id && !newProps.find(np => np.id === op.id)); |