{
let svg = viz.create({ domain: china, margin: 30 });
svg.path({ datum: world, fill: "#CCC" });
svg.path({ datum: china, fill: "#38896F" });
let inset = viz.container.create({
parent: svg,
pos: [795, 395],
width: 200,
projection: d3.geoOrthographic().rotate([-100, -30])
});
inset.path({ datum: world, fill: "#CCC" });
inset.path({ datum: china, fill: "#38896F" });
inset.outline({ fill: "none", stroke: "#38896F", strokeWidth: 3 });
return svg.render();
}