Published
Edited
Dec 5, 2018
1 star
Also listed in…
Visualizations
Vis.gl
Insert cell
Insert cell
container = html `<div style="height:600px"><div id="tooltip"></div></div>`
Insert cell
lightSettings = {
return {
lightsPosition: [-0.144528, 49.739968, 8000, -3.807751, 54.104682, 8000],
ambientRatio: 0.7,
diffuseRatio: 0.6,
specularRatio: 0.2,
lightsStrength: [0.8, 0.0, 0.8, 0.0],
numberOfLights: 1
};
}
Insert cell
{
const geojsonLayer = new deck.GeoJsonLayer({
data,
opacity: 1,
filled: true,
extruded: true,
lightSettings,
elevationScale:5000,
getElevation: f => f.properties.name.length*10,
getFillColor: f => colorScale(f.properties.name.length),
getLineColor: f => [255, 255, 255],
pickable: true,
onHover
});
deckgl.setProps({layers: [geojsonLayer]});
return geojsonLayer;
}
Insert cell
tooltip = container.querySelector('#tooltip')
Insert cell
data = d3.json('https://raw.githubusercontent.com/bumbeishvili/d3js-boilerplates/gh-pages/Maps/World/world_countries.json')
Insert cell
scale = d3.scaleLinear().domain([7,20]).range([0,5])
Insert cell
Math.round(scale(0))
Insert cell
colorArr = ['#EBF8FC','#BCD2E8','#99BBDD','#8C92CA','#9248AB','#8E007F']
.map(d=>d3.hcl(d))
.map(d=>d.rgb())
.map(d=>[Math.round(d.r),Math.round(d.g),Math.round(d.b)])
Insert cell
colorScale = {
const COLOR_SCALE = colorArr;

return x => {
const i = Math.round(scale(x));
if (x < 0) {
return COLOR_SCALE[i] || COLOR_SCALE[0];
}
return COLOR_SCALE[i] || COLOR_SCALE[COLOR_SCALE.length - 1];
};
}
Insert cell
deckgl = {
return new deck.DeckGL({
container,
map: mapboxgl,
// This token is for demo purpose only and rotated regularly. Get your own token at https://www.mapbox.com
mapboxApiAccessToken: 'pk.eyJ1IjoidWJlcmRhdGEiLCJhIjoiY2pudzRtaWloMDAzcTN2bzN1aXdxZHB5bSJ9.2bkj3IiRC8wj3jLThvDGdA',
mapStyle: 'mapbox://styles/mapbox/dark-v9',
latitude: 49.254,
longitude: 20.13,
zoom: 1,
maxZoom: 16,
pitch: 45
});
}
Insert cell
onHover = {
return function(info) {
const {x, y, object} = info;
if (object) {
tooltip.style.top = `${y}px`;
tooltip.style.left = `${x}px`;
tooltip.innerHTML = `
<div><b>${object.properties.name}</b></div>
`;
} else {
tooltip.innerHTML = '';
}
};
}
Insert cell
mapboxgl = require('mapbox-gl@~0.44.1/dist/mapbox-gl.js')
Insert cell
Insert cell
d3 = require("https://d3js.org/d3.v5.min.js")
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more