Open In App

D3.js geoBonne() Function

Last Updated : 23 Sep, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The geoBonne() function in d3.js is used to draw the Bonne pseudoconical equal-area projection. The Bonne projection maintains accurate shapes of areas along the central meridian and the standard parallel, but progressively distorts away from those regions. It makes Bonne projection from given geo JSON data.

Syntax: 

d3.geoBonne()

Parameters: This method does not accept any parameter.

Return Value: This method returns the Bonne pseudoconical equal-area projection.

Example: The following example makes the Bonne pseudoconical equal-area projection of the world.

HTML




<!DOCTYPE html> 
<html lang="en"
  
<head
    <meta charset="UTF-8" /> 
    <meta name="viewport"
        content="width=device-width, 
                initial-scale=1.0"/>   
    <script src=
        "https://d3js.org/d3.v4.js">
    </script>
  
    <script src=
    </script>  
</head
  
<body
    <div style="width:700px; height:600px;"
        <center
            <h3 style="color:grey"
                Bonne Projection of World
            </h3>  
        </center>
  
        <svg width="700" height="550"
        </svg
    </div
  
    <script>
        var svg = d3.select("svg"),
            width = +svg.attr("width"),
            height = +svg.attr("height");
  
        // Bonne projection
        var gfg = d3.geoBonne()
            .scale(width / 1.5 / Math.PI)
            .translate([width / 2, height / 2])
  
        // Loading the json data
        d3.json("https://raw.githubusercontent.com/"
            + "janasayantan/datageojson/master/"
            + "geoworld%20.json", 
            function(data){
                // Draw the map
                svg.append("g")
                    .selectAll("path")
                    .data(data.features)
                    .enter().append("path")
                    .attr("fill", "black")
                    .attr("d", d3.geoPath()
                        .projection(gfg)
                    )
                    .style("stroke", "#ffff")
        })
    </script>
</body
  
</html>


Output:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads