|
|
@ -1,5 +1,3 @@
|
|
|
|
const svg = d3.select("svg")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const defaultColor = "#555555"
|
|
|
|
const defaultColor = "#555555"
|
|
|
|
|
|
|
|
|
|
|
|
const languages = {
|
|
|
|
const languages = {
|
|
|
@ -129,6 +127,33 @@ const district2lang = { // Should override state colors
|
|
|
|
"Bahraich": languages["awadhi"],
|
|
|
|
"Bahraich": languages["awadhi"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function responsivefy(svg) {
|
|
|
|
|
|
|
|
// get container + svg aspect ratio
|
|
|
|
|
|
|
|
var container = d3.select(svg.node().parentNode),
|
|
|
|
|
|
|
|
width = parseInt(svg.style("width")),
|
|
|
|
|
|
|
|
height = parseInt(svg.style("height")),
|
|
|
|
|
|
|
|
aspect = width / height;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// add viewBox and preserveAspectRatio properties,
|
|
|
|
|
|
|
|
// and call resize so that svg resizes on inital page load
|
|
|
|
|
|
|
|
svg.attr("viewBox", "0 0 " + width + " " + height)
|
|
|
|
|
|
|
|
.attr("perserveAspectRatio", "xMinYMid")
|
|
|
|
|
|
|
|
.call(resize);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// to register multiple listeners for same event type,
|
|
|
|
|
|
|
|
// you need to add namespace, i.e., 'click.foo'
|
|
|
|
|
|
|
|
// necessary if you call invoke this function for multiple svgs
|
|
|
|
|
|
|
|
// api docs: https://github.com/mbostock/d3/wiki/Selections#on
|
|
|
|
|
|
|
|
d3.select(window).on("resize." + container.attr("id"), resize);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// get width of container and resize svg to fit it
|
|
|
|
|
|
|
|
function resize() {
|
|
|
|
|
|
|
|
var targetWidth = Math.floor(container.node().getBoundingClientRect().width);
|
|
|
|
|
|
|
|
svg.attr("width", targetWidth);
|
|
|
|
|
|
|
|
svg.attr("height", Math.round(targetWidth / aspect));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Functions for calculating and dealing with language boundaries
|
|
|
|
// Functions for calculating and dealing with language boundaries
|
|
|
|
function reverseCoordArrays(coords) {
|
|
|
|
function reverseCoordArrays(coords) {
|
|
|
|
if (!Array.isArray(coords)) {
|
|
|
|
if (!Array.isArray(coords)) {
|
|
|
@ -185,12 +210,40 @@ function stateOrDistrictOrLanguage(d) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// const mapWidth = document.getElementById("indiaMap").getAttribute("width")
|
|
|
|
|
|
|
|
// const mapHeight = document.getElementById("indiaMap").getAttribute("height")
|
|
|
|
|
|
|
|
const mapWidth = /*window.innerWidth - */document.querySelector("#svgContainer").offsetWidth * 0.85;
|
|
|
|
|
|
|
|
// const mapHeight = document.querySelector("#svgContainer").offsetHeight;
|
|
|
|
|
|
|
|
const mapHeight = (window.innerHeight - document.querySelector("#svgContainer").getBoundingClientRect().top);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const svg = d3.select("#svgContainer")
|
|
|
|
|
|
|
|
.append('svg')
|
|
|
|
|
|
|
|
.attr('width', mapWidth.toString())
|
|
|
|
|
|
|
|
.attr('height', (mapHeight).toString())
|
|
|
|
|
|
|
|
// .attr('viewbox', '0 0 ' + mapWidth.toString() + ' ' + mapHeight.toString())
|
|
|
|
|
|
|
|
// .attr('preserveAspectRatio', "xMidYMin")
|
|
|
|
|
|
|
|
.attr('id', 'indiaMap')
|
|
|
|
|
|
|
|
// .call(responsivefy);
|
|
|
|
|
|
|
|
|
|
|
|
function drawMap(world) {
|
|
|
|
function drawMap(world) {
|
|
|
|
const mapWidth = document.getElementById("indiaMap").getAttribute("width")
|
|
|
|
|
|
|
|
const mapHeight = document.getElementById("indiaMap").getAttribute("height")
|
|
|
|
|
|
|
|
const projection = d3.geoMercator().fitSize([mapWidth, mapHeight], world)
|
|
|
|
const projection = d3.geoMercator().fitSize([mapWidth, mapHeight], world)
|
|
|
|
const path = d3.geoPath().projection(projection);
|
|
|
|
const path = d3.geoPath().projection(projection);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
|
|
|
|
const newSvg = d3.select('svg');
|
|
|
|
|
|
|
|
const bbox = newSvg.node().getBBox();
|
|
|
|
|
|
|
|
const originalWidth = +newSvg.attr("width");
|
|
|
|
|
|
|
|
newSvg
|
|
|
|
|
|
|
|
// .attr("viewBox", `${bbox.x} ${bbox.y} ${bbox.width} ${bbox.height}`)
|
|
|
|
|
|
|
|
.attr("viewBox", `0 ${bbox.y} ${originalWidth} ${bbox.height}`)
|
|
|
|
|
|
|
|
// .attr("width", mapHeight.toString())
|
|
|
|
|
|
|
|
.attr("height", bbox.height)
|
|
|
|
|
|
|
|
// .style("display", "block")
|
|
|
|
|
|
|
|
// .style("max-height", "100%"); // optional: keep it scalable in a flexbox
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const states = svg.selectAll("g")
|
|
|
|
const states = svg.selectAll("g")
|
|
|
|
.data(world.features)
|
|
|
|
.data(world.features)
|
|
|
|
.enter()
|
|
|
|
.enter()
|
|
|
|