Published
Edited
Aug 21, 2019
1 star
Insert cell
md`# US Building Footprints - Providence, KY`
Insert cell
centerpoint
Insert cell
viewof centerpoint = {
let container = html`<div style='height:800px;' />`;

// Give the container dimensions.
yield container;

// Create the \`map\` object with the mapboxgl.Map constructor, referencing
// the container div
let map = new mapboxgl.Map({
container,
center: [-87.7627898, 37.397545],
zoom: 12,
style: "mapbox://styles/sinclarius/cjyfpabft0u8s1dpcfb99lion"
});

map.on("mousemove", e => {
container.value = e.lngLat;
container.dispatchEvent(new CustomEvent("input"));
});
map.on('load', function () {
var layers = map.getStyle().layers;
// Find the index of the first symbol layer in the map style
var firstSymbolId;
for (var i = 0; i < layers.length; i++) {
if (layers[i].type === 'symbol') {
firstSymbolId = layers[i].id;
break;
}
}
map.addLayer({
'id': 'building-fill',
'type': 'fill',
"source": {
type: 'vector',
url: 'mapbox://sinclarius.85till2b'
},
'source-layer': 'buildings',
'layout': {
},
'paint': {
'fill-color': '#e39f91',
'fill-opacity': 1
}
}, firstSymbolId)});

}
Insert cell
md`## Libraries`
Insert cell
Insert cell
md`## Attribution
This map shows the [Microsoft US Building Footprints](https://github.com/Microsoft/USBuildingFootprints) dataset overlaid on a modified version of [Nat Slaughter's Lè Shine map](https://www.mapbox.com/gallery/#l%C3%A8-shine).`
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