D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ikbale
Full window
Github gist
geomap
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } .province:hover { opacity: 0.5; } .hidden { display: none; } div.tooltip { color: #222; background-color: #fff; padding: .5em; text-shadow: #f5f5f5 0 1px 0; border-radius: 2px; opacity: 0.9; position: absolute; } </style> </head> <body> <div> <input id="slider" type="range" value="1" min="1" max="52" step="1" /> <span id="week">week </span> </div> <script> var width = 700, height = 580; var svg = d3.select( "body" ) .append( "svg" ) .attr( "width", width ) .attr( "height", height ); // Definir la map de France var project = d3.geoConicConformal().center([2.454071, 46.279229]).scale(2500); // Definir l'echelle de couleur var colors = d3.scaleQuantize() .range(["rgb(213,239,204)", "rgb(169,221,160)", "rgb(94,186,97)", "rgb(42,141,71)", "rgb(0,91,36)"]); // charger les données d3.csv("GrippeFrance2014.csv", function(data) { var france; var listWeeks = Object.keys(data[0]); d3.json("regions.json", function(json) { // Definir la valeur d'origine sur le curseur var origine = listWeeks[1]; d3.select('#week').html(origine); // Mettre à jour la valeur de la semaine d3.select("#slider").on("input", function() { updateViz(+this.value); }); var path = d3.geoPath() .projection(project); var tooltip = d3.select('body') .append('div') .attr('class', 'hidden tooltip'); //Fusionner les donnees avec le GeoJSON des regions for (var i = 0; i < data.length; i++) { // Trouver le nom de la region dans le fichier csv var dataState = data[i].region; for (var j = 0; j< json.features.length; j++){ var jsonState = json.features[j].properties.nom; if (dataState == jsonState) { json.features[j].properties.tab = Object.values(data[i]); break; } } } svg.selectAll("path") .data(json.features) .enter() .append("path") .attr("d", path); france = json; drawMap(1); }); //Mettre à jour tous les elements function updateViz(val){ d3.select('#week').html(listWeeks[val]); drawMap(val); }; // Dessiner la map function drawMap(currentWeek){ var nbr; //Définir le domaine d'entrée pour l'échelle de couleurs colors.domain([ d3.min(data, function(x) { return parseFloat(Object.values(x)[currentWeek]);}), d3.max(data, function(x) { return parseFloat(Object.values(x)[currentWeek]);}) ]); carte = svg.selectAll("path") .data(france.features); carte .on('mousemove', function(d) { if(d.properties.tab == undefined){ nbr = "undefined"; }else { nbr = d.properties.tab[currentWeek]; } var mouse = d3.mouse(svg.node()).map(function(d) { return parseInt(d); }); tooltip.classed('hidden', false) .attr('style', 'left:' + (mouse[0] + 15) + 'px; top:' + (mouse[1] - 35) + 'px') .html(d.properties.nom + ":" + parseFloat(nbr)); }) .on('mouseout', function() { tooltip.classed('hidden', true); }); //code en cas de mise à jour de la carte / changement de semaine carte .attr('class', function(d) { return 'province ' + d.properties.code; }) .attr('d', path) .style("fill", function(d) { // Obtenir la valeur trouvée ci-dessus var tab = d.properties.tab; if (tab) { return colors(tab[currentWeek]); } else { // s'il n'y a pas de valeur, colorier avec Gray return "#ccc"; } }); // Colorier la map pour la première fois carte.selectAll("path") .enter() .data(france.features) .append("path") .attr("class", "enter") .attr("d", path) .style("fill", function(d) { // Obtenir la valeur trouvée ci-dessus var tab = d.properties.tab; if (tab) { return color(tab[currentWeek]); } else { // s'il n'y a pas de valeur, colorier avec Gray return "#ccc"; } }); }; }); </script> </body>
https://d3js.org/d3.v4.min.js