I am trying to load a GeoJSON file and to draw some graphics using it as a basis with D3 v5.
The problem is that the browser is skipping over everything included inside the d3.json()
call. I tried inserting breakpoints to test but the browser skips over them and I cannot figure out why.
Code snippet below.
d3.json(\"/trip_animate/tripData.geojson\", function(data) {
console.log(\"It just works\"); // This never logs to console.
//...all the rest
}
The code continues on from the initial console.log()
, but I omitted all of it since I suspect the issue is with the d3.json
call itself.