map = bertin.draw({
params: {
projection: "+proj=lcc +lat_1=49 +lat_2=44 +lat_0=46.5 +lon_0=3 +x_0=700000 +y_0=6600000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs",
background: "white",
margin: 20,
extent: fond
},
layers: [
{
type: "header",
text: "Location of drinking fountains in Paris",
background: "#1f5784",
fill: "white",
fontSize: 30,
anchor: "start"
},
{
type: "footer",
text: "Source: Paris Data, 2022"
},
{
type: "layer",
geojson: fond,
fill: "#1f5784",
stroke: "black",
strokeWidth: 3
},
{
type: "shadow",
geojson: fond
}
]
})