Looking for some guidance in d3 as a beginner. My goal is to plot a series of coordinates onto a map.
After starting with Mike Bostock's airports voronoi map, I managed to get the base map set up successfully. The issue arises when trying to display individual points instead of one collective element as showcased by the blue dots on the map.
Here is my current code implementation: https://jsfiddle.net/cerealcommas/ofmz52uu/3/
I have the data available in JSON format but am struggling with correctly manipulating it:
{
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [27.47197, -80.32435]
},
"properties": {}
},
...
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [26.25161, -81.82374]
},
"properties": {}
}]
}