block by rveciana 0e73c92391def44331d2069755edc199

Using rollup with d3-composite-projections

Full Screen

This example is part of this blog entry and shows how to use rollup to create a custom bundle with the library d3-composite-projections.

To use this example, just download the files from the gist

git clone https://gist.github.com/0e73c92391def44331d2069755edc199.git

and then:

npm install
npm run build

I took the information from this post by Richa Vyas.

index.html

<!DOCTYPE html>
<meta charset="utf-8">
<style>

.states {
  fill: #ccc;
  stroke: #fff;
}
</style>
<body>
<script src="d3.min.js"></script>

<script>
var width = 960,
    height = 500;

var projection = d3.geoConicConformalSpain();
var path = d3.geoPath()
    .projection(projection);

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

    var t = d3.transition();
d3.json("provincias.json", function(error, spain) {
  var spain = d3.feature(spain, spain.objects.provincias);
  svg.selectAll(".region")
      .data(spain.features)
      .enter()
      .append("path")
      .attr("class", "region")
      .attr("d", path)
      .style("fill", "#aca")
      .style("stroke", "#000")
      .style("stroke-width", "0.5px")
      .on("mouseover", function(d,i) {
        d3.select(this).interrupt();
        d3.select(this)
          .transition(t)
          .style("fill", "red");
        })
      .on("mouseout", function(d,i) {
        d3.select(this).interrupt();
        d3.select(this)
          .transition(t)
          .style("fill", "#aca");
        });;

  svg
    .append("path")
      .style("fill","none")
      .style("stroke","#f00")
      .attr("d", projection.getCompositionBorders());

});

</script>

d3.js


import { geoConicConformalSpain } from "d3-composite-projections";
import { geoPath } from "d3-geo";
import { json } from "d3-request";
import { select } from "d3-selection";
import { transition } from "d3-transition";
import { feature } from "topojson";

export default {
  geoConicConformalSpain: geoConicConformalSpain,
  geoPath: geoPath,
  json: json,
  select: select,
  transition: transition,
  feature: feature
};

package.json

{
  "private": true,
  "scripts": {
    "build": "rollup -c | uglifyjs -c -m> d3.min.js"
  },
  "dependencies": {
    "d3-array": "1.0.0",
    "d3-axis": "1.0.1",
    "d3-composite-projections": "^1.0.1",
    "d3-geo": "^1.2.5",
    "d3-request": "^1.0.1",
    "d3-scale": "1.0.2",
    "d3-selection": "^1.0.1",
    "d3-shape": "1.0.1",
    "d3-time-format": "2.0.1",
    "d3-transition": "^1.0.2",
    "rollup": "^0.34.3",
    "rollup-plugin-node-resolve": "^2.0.0",
    "topojson": "^1.6.27",
    "uglify-js": "^2.7.3"
  }
}

rollup.config.js

import npm from "rollup-plugin-node-resolve";

export default {
  entry: "d3.js",
  plugins: [npm({jsnext: true})],
  moduleId: "d3",
  moduleName: "d3",
  format: "umd"
};