From 3d06971e77dd47317d686ce1a524156fb4a36228 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Fri, 28 Mar 2025 14:41:51 -0500 Subject: [PATCH] Remove testing code; use minified map JSON; hide spinner after map has loaded --- index.js | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/index.js b/index.js index 515d8d6..4e81544 100644 --- a/index.js +++ b/index.js @@ -223,6 +223,10 @@ function drawMap(world) { districtLang.districts.push(d) } } + // Hide map load spinner after map has loaded + document.getElementById("mapLoadSpinner").classList.add("hide"); + document.querySelector("svg").classList.add("show"); + }) .append("title") // Tooltip .text(d => d.properties.district); @@ -339,21 +343,20 @@ function drawMap(world) { } else { d3.select(this).remove() // Only add this attribute if the element is a language } - }); - + }) let allLangs = [] const coordinates = [77.69916967457782,23.389970772934166]; const [xCoord, yCoord] = projection(coordinates); - svg.append("text") - .attr("x", xCoord) - .attr("y", yCoord) - .attr("class", "testClass") - .attr("text-anchor", "middle") - .attr("font-size", "12px") - .attr("fill", "black") - .text("Hello, Map!"); +// svg.append("text") +// .attr("x", xCoord) +// .attr("y", yCoord) +// .attr("class", "testClass") +// .attr("text-anchor", "middle") +// .attr("font-size", "12px") +// .attr("fill", "black") +// .text("Hello, Map!"); // for (const [langId,lang] of Object.entries(languages)) { // let geojson = { // "type": "FeatureCollection", @@ -377,4 +380,4 @@ function drawMap(world) { } -d3.json("india_with_districts_with_languages.json").then(drawMap) +d3.json("india_with_districts_with_languages_min.json").then(drawMap)