Toutes mes réponses sur les forums

Vous lisez 2 fils de discussion
  • Auteur
    Réponses
    • #17616

      ALPHA
      Participant
      Inscrit

      Merci DK pour ta réponse

    • #17614

      ALPHA
      Participant
      Inscrit

      <!– Code from d3-graph-gallery.com –>
      <!DOCTYPE html>
      <meta charset= »utf-8″>

      <!– Load d3.js –>
      <script src= »https://d3js.org/d3.v4.js »></script>
      <script src= »https://d3js.org/d3-scale-chromatic.v1.min.js »></script>
      <script src= »https://d3js.org/d3-geo-projection.v2.min.js »></script>

      <!– Create an element where the map will take place –>
      <svg id= »my_dataviz » width= »400″ height= »300″></svg>

      <script>

      // The svg
      var svg = d3.select(« svg »),
      width = +svg.attr(« width »),
      height = +svg.attr(« height »);

      // Map and projection
      var projection = d3.geoNaturalEarth()
      .scale(width / 1.3 / Math.PI)
      .translate([width / 2, height / 2])

      // Load external data and boot
      d3.json(« https://raw.githubusercontent.com/holtzy/D3-graph-gallery/master/DATA/world.geojson », function(data){

      // Draw the map
      svg.append(« g »)
      .selectAll(« path »)
      .data(data.features)
      .enter().append(« path »)
      .attr(« fill », « #69b3a2 »)
      .attr(« d », d3.geoPath()
      .projection(projection)
      )
      .style(« stroke », « #fff »)
      })

      </script>

    • #17611

      ALPHA
      Participant
      Inscrit

      https://time2watch.io si ça te fait un chargement long utilises un vpn regle le sur US si t’as pas de VPN tiens https://windscribe.com ne me remecie pas 😎

Vous lisez 2 fils de discussion