RunKit value viewer with deck.gl
npm install deck.gl-runkitjs
const {DeckGL, ScatterplotLayer} = require('deck.gl-runkit');DeckGL({
longitude: -122.45,
latitude: 37.8,
zoom: 12,
map: true,
layers: [
new ScatterplotLayer({
data: [
{position: [-122.45, 37.8], color: [255, 0, 0], radius: 100}
]
})
]
});
``