Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning D3.js 5 Mapping - Second Edition

You're reading from  Learning D3.js 5 Mapping - Second Edition

Product type Book
Published in Nov 2017
Publisher
ISBN-13 9781787280175
Pages 298 pages
Edition 2nd Edition
Languages
Authors (3):
Thomas Newton Thomas Newton
Profile icon Thomas Newton
Oscar Villarreal Oscar Villarreal
Profile icon Oscar Villarreal
Lars Verspohl Lars Verspohl
Profile icon Lars Verspohl
View More author details

Table of Contents (13) Chapters

Preface 1. Gathering Your Cartography Toolbox 2. Creating Images from Simple Text 3. Producing Graphics from Data - the Foundations of D3 4. Creating a Map 5. Click-Click Boom! Applying Interactivity to Your Map 6. Finding and Working with Geographic Data 7. Testing 8. Drawing with Canvas and D3 9. Mapping with Canvas and D3 10. Adding Interactivity to Your Canvas Map 11. Shaping Maps with Data - Hexbin Maps 12. Publishing Your Visualization with GitHub Pages

Experiment 6 – dragging orthographic projections

For our last example, we will add the ability to drag our globe so that the user can spin it to the left or right. Open http://localhost:8080/chapter-5/example-6.html from the code samples and let's get started:

var dragging = function(d) { 
  var c = projection.rotate(); 
  projection.rotate([c[0] + d3.event.dx/2, c[1], c[2]]); 
  map.selectAll('path').attr('d', path);
};

Our first piece of new code is our dragging event handler. This function will be executed every time the user drags the mouse on the screen. The algorithm executes the following steps:

  1. Stores the current rotation value.
  2. Updates the projection's rotation based on the distance it is dragged.
  3. Updates all the paths on the map.

The second step deserves a little more explanation. Just like the d3.zoom() event handler, d3.drag()...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}