vl
.layer(
vl
.markGeoshape({ fill: "green", stroke: "yellow", strokeWidth: 1 })
.data(vl.topojson(br).feature("estados")),
vl
.markCircle({ fill: "white" })
.data(estados_e_capitais)
.encode(
vl.longitude().fieldQ("longitude_2"),
vl.latitude().fieldQ("latitude_2")
),
vl
.markText({ fill: "white", dy: -10 })
.data(estados_e_capitais)
.encode(
vl.longitude().fieldQ("longitude_2"),
vl.latitude().fieldQ("latitude_2"),
vl.text().fieldN("nome_2")
)
)
.project(vl.projection("mercator"))
.background('gray')
.width(800)
.height(800)
.config({ view: { stroke: null } })
.render()