Published
Edited
Mar 3, 2021
Insert cell
Insert cell
container = html`<div style="height: 400px;"></div>`
Insert cell
mutable z = 42
Insert cell
map.on("zoom, move", () => mutable z = map.getBounds())
Insert cell
map = {
var map = L.map(container).setView([38.9072, -77.0369], 1);
L.tileLayer('https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.jpg', {
maxZoom: 20,
attribution: 'Map tiles by <a target="_top" rel="noopener" href="http://stamen.com">Stamen Design</a>, under <a target="_top" rel="noopener" href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a target="_top" rel="noopener" href="http://openstreetmap.org">OpenStreetMap</a>, under <a target="_top" rel="noopener" href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a>',
tileSize: 512,
zoomOffset: -1
}).addTo(map);
invalidation.then(() => map.remove());
return map;
}
Insert cell
quakes = {
function onEachFeature(feature, layer) {
var popupContent = "<p> Earthquake Location: " +
feature.properties.place +". <p> Magnitude: " + feature.properties.mag + "<p> Coordinates: " + feature.geometry.coordinates;

if (feature.properties && feature.properties.popupContent) {
popupContent += feature.properties.popupContent;
}

layer.bindPopup(popupContent);
}

const quakes = L.geoJSON([earthquakes], {

style: function (feature) {
return feature.properties && feature.properties.style;
},

onEachFeature: onEachFeature,
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, {
radius: 8,
fillColor: "#ff7800",
color: "#000",
weight: 1,
opacity: 1,
fillOpacity: 0.8
});
}
}).addTo(map);

return quakes;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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