La función geoAzimuthalEquidistant() en d3.js se utiliza para dibujar la proyección equidistante azimutal a partir de los datos geojson proporcionados. Es una proyección de mapa donde todos los puntos en el mapa están a distancias correctas del punto central proporcionalmente. Además, todos los puntos del mapa están en la dirección correcta desde el punto central.
Sintaxis:
d3.geoAzimuthalEquidistant()
Parámetros: este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la proyección equidistante acimutal.
Ejemplo 1: El siguiente ejemplo dibuja la proyección equidistante azimutal del mundo con el centro en (0,0).
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:600px;"> <center> <h3 style="color:black"> AzimuthalEquidistant 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"); // AzimuthalEquidistant projection var gfg = d3.geoAzimuthalEquidistant() .scale(width / 1.5 / Math.PI) .translate([width / 2, height / 2]); // Loading the geojson 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", "Silver") .attr("d", d3.geoPath() .projection(gfg) ) .style("stroke", "#ffff") }); </script> </body> </html>
Producción:
Ejemplo 2: El siguiente ejemplo hace una proyección equidistante azimutal centrada en (-10,0) y rotada 10 grados en sentido contrario a las agujas del reloj con respecto al eje x.
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:600px;"> <center> <h3 style="color:grey"> AzimuthalEquidistant 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"); // AzimuthalEquidistant projection // Center(0,-10) and rotating -10 degree var gfg = d3.geoAzimuthalEquidistant() .scale(width / 1.5 / Math.PI) .rotate([-10, 0]) .center([0, -10]) .translate([width / 2, height / 2]); // Loading the geojson data d3.json("https://raw.githubusercontent.com/" + "janasayantan/datageojson/master/" + "world.json", function (data) { // Draw the map svg.append("g") .selectAll("path") .data(data.features) .enter().append("path") .attr("fill", "green") .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