deckgl = {
return new deck.DeckGL({
container,
map: mapboxgl,
mapStyle: 'https://basemaps.cartocdn.com/gl/dark-matter-nolabels-gl-style/style.json',
initialViewState: INITIAL_VIEW_STATE,
controller: true,
pickingRadius: 5,
parameters: {
blendFunc: [GL.SRC_ALPHA, GL.ONE, GL.ONE_MINUS_DST_ALPHA, GL.ONE],
blendEquation: GL.FUNC_ADD
},
getTooltip: getTooltip
});
}