{
let svg = viz.create({
domain: aus,
width: 800,
margin: 20,
projection: "mercator",
fontFamily: "Slackey"
});
svg.outline();
svg.path({ datum: aus, fill: "#38896F" });
svg.path({ datum: aus_roads, stroke: "white", strokeOpacity: 0.2 });
svg.scalebar();
svg.north({ pos: [75, 125], scale: 2, fill: "white" });
svg.header({
text: "Hello Australia",
background_fill: "#38896F",
margin: 10,
fill: "white",
fontSize: 50
});
svg.footer({
text: "Made with Geoviz"
});
svg.graticule({ stroke: "white", strokeWidth: 2, strokeDasharray: 10 });
svg.graticule({
stroke: "black",
strokeOpacity: 0.2,
strokeWidth: 2,
strokeDasharray: 10,
transform: "translate(2,2)"
});
return svg.render();
}