var projection = d3.geoAlbersUsa()
.translate([width/2, height/2]);
var path = d3.geoPath()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("usa.json", function(error, usa) {
if (error) throw error;
svg.append("path")
.datum(topojson.feature(usa, usa.objects.nation))
.attr("d", path);
var latLong = [35.7796, -78.6382];
var xy = projection(latLong);
svg.append("circle")
.attr("cx", xy[0])
.attr("cy", xy[1])
.attr("r", 5)
.style("fill", "red");
});
}