D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
FrieseWoudloper
Full window
Github gist
stackoverflow suggestie
<!DOCTYPE html> <script src="https://d3js.org/d3.v3.min.js"></script> <div class="graph"></div> <script> var width = 960; var height = 500; var svg = d3.select("body").append("svg") .attr('width', width) .attr('height', height); var projection = d3.geo.mercator() .translate([width / 2, height / 2]) var path = d3.geo.path() .projection(projection); url = "https://geodata.nationaalgeoregister.nl/cbsgebiedsindelingen/wfs?service=wfs&request=GetFeature&typeName=cbs_arrondissementsgebied_2019_gegeneraliseerd&outputFormat=json&srsName=EPSG:4326"; d3.json(url, function(err, geojson) { svg.append("path") .attr("d", path(geojson)) }) </script>
https://d3js.org/d3.v3.min.js