Public
Edited
Mar 29, 2024
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
viz.text({
fill: "#38896F",
text: "cogito ergo sum",
fontSize: 20,
textDecoration: "underline",
letterSpacing: 10,
wordSpacing: 30
})
Insert cell
Insert cell
Insert cell
Insert cell
viz.text({
fill: "#38896F",
text: "Ideas are the source\nof all things (Platon)",
fontSize: 20,
fontStyle: "italic",
lineSpacing: 10
})
Insert cell
Insert cell
{
// Container
let svg = viz.create({
width: 500,
zoomable: true,
domain: world
});

// Basemap
svg.path({ datum: world, fill: "#CCC" });

// Text
svg.text({
pos: [200, 50],
text: "Hello geoviz",
fontSize: 30,
fill: "#38896F"
});

// Render
return svg.render();
}
Insert cell
Insert cell
abuja = [7.396, 9.076]
Insert cell
{
// Container
let svg = viz.create({
width: 500,
zoomable: true,
domain: world
});

// Basemap
svg.path({ datum: world, fill: "#CCC" });

// Text
svg.text({
pos: abuja,
coords: "geo",
text: "Abuja",
fontSize: 30,
fill: "#38896F"
});

// Render
return svg.render();
}
Insert cell
Insert cell
Insert cell
viz.text({ data: world, text: "ISO3", fill: "#38896F", svg_zoomable: true })
Insert cell
Insert cell
{
// Container
let svg = viz.create({
width: 500,
zoomable: true,
domain: world
});

// Basemap
svg.path({ datum: world, fill: "#CCC" });

// Here we create points at the centroid of the countries in the map coordinates.
const centroids_latlon = viz.tool.centroid(world);
const centroids_xy = viz.tool.project(centroids_latlon, {
projection: svg.projection
});

// Text
svg.text({
coords: "svg",
data: centroids_xy,
text: "ISO3",
fill: "#38896F"
});

// Render
return svg.render();
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
font = viz.tool.addfonts([
{
fontFamily: "Orbitron",
url: await FileAttachment("Orbitron-VariableFont_wght.ttf").url()
}
])
Insert cell
{
// Container
let svg = viz.create({
width: 500,
zoomable: true,
domain: world
});

// Basemap
svg.path({ datum: world, fill: "#CCC" });

// Only countries with more than 100 million inh.
const bigcountries = viz.tool.featurecollection(
world.features.filter((d) => d.properties.pop >= 100000000)
);

// Text
svg.text({
data: bigcountries,
text: "name",
fontSize: 20,
fontFamily: "Orbitron",
fill: "#38896F"
});

// Render
return svg.render();
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
{
// Container
let svg = viz.create({
width: 500,
domain: world
});

// Basemap
svg.path({ datum: world, fill: "#CCC" });

// Position marker
const pos = [250, 120];
svg
.append("circle")
.attr("cx", pos[0])
.attr("cy", pos[1])
.attr("r", 5)
.attr("fill", "#616161")
.attr("stroke", "none");

// Text
svg.text({
pos: pos,
text: `"In that Empire, the Art of Cartography
attained such Perfection that the map
of a single Province occupied the entirety
of a City, and the map of the Empire, the
entirety of a Province"
(Jorge Luis Borges)`,
fontSize: 13,
fill: "#38896F",
dominantBaseline: dominantBaseline,
textAnchor: textAnchor,
dx: dx,
dy: dy
});

// Render
return svg.render();
}
Insert cell
Insert cell
import { style, world, disclaimer, viz } from "@neocartocnrs/geoviz-appendix"
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