Created
October 8, 2018 03:36
-
-
Save Pessimistress/ef06176d8590f71dc6ee23f1fcd03e88 to your computer and use it in GitHub Desktop.
deck.gl + Mapbox: Get Started
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {ScatterplotLayer} from '@deck.gl/layers'; | |
import {MapboxLayer} from '@deck.gl/mapbox'; | |
import mapboxgl from 'mapbox-gl'; | |
// Get a mapbox API access token | |
mapboxgl.accessToken = '<your access token here>'; | |
// Initialize mapbox map | |
const map = new mapboxgl.Map({ | |
container: 'map', | |
style: 'mapbox://styles/mapbox/streets-v9', | |
center: [-74.50, 40], | |
zoom: 9 | |
}); | |
// Create a mapbox-compatible deck.gl layer | |
const myDeckLayer = new MapboxLayer({ | |
id: 'my-scatterplot', | |
type: ScatterplotLayer, | |
data: [ | |
{position: [-74.5, 40], size: 10000} | |
], | |
getPosition: d => d.position, | |
getRadius: d => d.size, | |
getColor: [255, 0, 0] | |
}); | |
// Insert the layer before mapbox labels | |
map.on('load', () => { | |
map.addLayer(myDeckLayer, 'waterway-label'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment