La función geoAugust() en d3.js se usa para dibujar la proyección conforme epicicloidal de agosto de los datos geojson dados.
Sintaxis:
d3.geoAugust()
Parámetros: este método no acepta ningún parámetro.
Devoluciones: este método devuelve la proyección conforme epicicloidal de agosto.
Ejemplo 1: El siguiente ejemplo dibuja la proyección conforme epicicloidal de agosto de Asia.
HTML
<!DOCTYPE html> <html> <head> <script src="https://d3js.org/d3.v4.js"> </script> <script src= "https://d3js.org/d3-geo-projection.v2.min.js"> </script> </head> <body> <div style="width:800px; height:400px;"> <center> <h4 style="color:green"> August Projection of Asia </h4> </center> <svg width="500" height="300"> </svg> </div> <script> var svg = d3.select("svg"), width = +svg.attr("width"), height = +svg.attr("height"); // August projection var gfg = d3.geoAugust() .scale(width / 1.5 / Math.PI) .translate([width / 2, height / 2]); // Loading the geojson data d3.json("https://raw.githubusercontent.com/" + "janasayantan/datageojson/master/" + "geoasia.json", function (data) { // Draw the map svg.append("g") .selectAll("path") .data(data.features) .enter().append("path") .attr("fill", "grey") .attr("d", d3.geoPath() .projection(gfg) ) .style("stroke", "#ffff") }); </script> </body> </html>
Producción:
Ejemplo 2: El siguiente ejemplo dibuja la proyección epicicloidal conforme del mundo de August.
HTML
<!DOCTYPE html> <html> <head> <script src="https://d3js.org/d3.v4.js"> </script> <script src= "https://d3js.org/d3-geo-projection.v2.min.js"> </script> </head> <body> <div style="width:700px; height:550px;"> <center> <h3 style="color:green"> August 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"); // August projection var gfg = d3.geoAugust() .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>
Producción:
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA