getDeckGLMap([
new deck.ScatterplotLayer({
id: 'scatterplot-layer',
coordinateSystem: deck.COORDINATE_SYSTEM.LNGLAT,
data: data,
pickable: true,
opacity: 1,
filled: true,
radiusScale: 1,
radiusMinPixels: 5,
radiusMaxPixels: 5,
getPosition: d => [d.Longitude, d.Latitude],
getRadius: d => 1,
getFillColor: d => [255, 140, 0]
})
], 20)