I'm trying to draw lines between plotted points using d3.js.
Sample geojson (FeatureCollection of 3 LineString): https://www.dropbox.com/s/hgkdvbnrgmb6kak/test.geojson?dl=0
Full Existing Code: https://www.dropbox.com/s/49820rs561vneti/test.html?dl=0
Code Chunk I'm having problem with:
lines.append("g").selectAll("path")
.data(d3.entries(data.features)).enter()
.append("svg:path")
.attr("d", path)
The circles are appearing but not the line to connect them together.
Any help will be appreciated!