mapping_movements/similarities_map.html

234 lines
7.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapping Movements - Alternative map of movements</title>
<style>
:root {
--marker-size: 20px;
}
body {
background: linear-gradient(#e66465, #9198e5);
height: 100vh;
color: white;
font-family: sans-serif;
}
.about {
position: absolute;
top: 20px;
right: 20px;
width: 400px;
z-index: 10;
}
#map {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.initiative::before {
position: absolute;
top: 0;
left: 0;
width: var(--marker-size);
height: var(--marker-size);
/* background: black; */
border: solid 2px black;
/* border-style: dotted; */
border-radius: 0 7px 0 7px;
content: ' ';
}
.initiative.selected::before,
.initiative:hover::before {
background: black;
}
.initiative {
position: absolute;
top: calc(50% - 50px);
left: 0;
/* height: 100px;
width: 100px; */
/* overflow: hidden; */
height: var(--marker-size);
width: var(--marker-size);
transition: left 2s, top 2s;
cursor: pointer;
transform: translate(calc(var(--marker-size) * -.5), calc(var(--marker-size) * -.5));
}
.initiative h2 {
position: absolute;
width: 250px;
font-size: 100%;
margin: 0;
/* opacity: .1; */
display: none;
top: calc(var(--marker-size) - 5px);
left: calc(var(--marker-size) + 10px);
}
.initiative .organisation {
position: absolute;
width: 250px;
/* opacity: .1; */
display: none;
bottom: calc(var(--marker-size) - 5px);
left: calc(var(--marker-size) + 10px);
}
.initiative:hover .organisation,
.initiative:hover h2,
.initiative.selected .organisation,
.initiative.selected h2 {
opacity: 1;
display: block;
}
svg {
position: fixed;
top: 20px;
left: 20px;
/* right: 20px; */
height: calc(100vh - 2 * 20px - var(--marker-size));
width: calc(100vw - 2 * 20px);
z-index: -1;
}
svg line {
stroke: rgba(255, 255, 255, .5);
stroke-width: 0.3px;
stroke-dasharray: 100 100;
stroke-dashoffset: 0;
transition: stroke-dashoffset 2s, opacity 2s;
opacity: 1 ;
}
</style>
<script>
class Map {
constructor(mapEl, lineEl) {
this.margin = 20;
this.mapEl = mapEl;
this.lineEl = lineEl;
this.initiatives = []
this.similarities = {}
this.offsets = []
this.offsetsEls = {}
}
_load() {
return fetch("similarities.json")
.then((response) => {
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
return response.json();
})
.then((response) => {
this.initiatives = response.initiatives
this.similarities = response.similarities
this.offsets = response.pca_1
});
}
init() {
this._load()
.then(() => {
this._createElements()
this.selectInitiative(0)
window.addEventListener('resize', (e) => this.selectInitiative(this.selectedIndex))
});
}
_createElements() {
this.mapEl.innerHMTL = "";
this.initiatives.forEach((initiative, initiative_idx) => {
const el = document.createElement('div')
el.classList.add('initiative')
el.innerHTML = `
<h2>${initiative.Title}</h2>
<div class='organisation'>${initiative.Organisation}</div>
`;
el.addEventListener('click', (e) => this.selectInitiative(initiative_idx));
initiative['el'] = el;
this.mapEl.appendChild(el);
// <line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" />
const line = document.createElementNS("http://www.w3.org/2000/svg", 'line')
line.setAttributeNS(null, "x1", 0)
line.setAttributeNS(null, "y1", 0)
line.setAttributeNS(null, "x2", Math.cos(this.offsets[initiative_idx] * Math.PI - Math.PI ) * 100)
line.setAttributeNS(null, "y2", Math.sin(this.offsets[initiative_idx] * Math.PI - Math.PI ) * 100)
this.lineEl.appendChild(line);
this.offsetsEls[initiative_idx] = line;
})
}
selectInitiative(nr) {
this.selectedIndex = nr;
this.selectedInitiative = this.initiatives[nr];
const radius = Math.min(window.innerWidth / 2, window.innerHeight) - 1 * this.margin;
const centerX = window.innerWidth / 2;
const centerY = window.innerHeight - 2 * this.margin;
this.similarities[this.selectedIndex].forEach((similarity, initiative_idx) => {
const offset = this.offsets[initiative_idx] // initiative_idx / (this.initiatives.length - 1);
const el = this.initiatives[initiative_idx]['el'];
// similarity=0
const r = (similarity - 1) * radius;
const x = Math.cos(offset * Math.PI) * r
const y = Math.sin(offset * Math.PI) * r
if (this.selectedIndex == initiative_idx) {
el.classList.add('selected');
el.style.top = `${centerY}px`;
el.style.left = `${centerX}px`;
} else {
el.style.top = `${centerY + y}px`;
el.style.left = `${centerX + x}px`;
el.classList.remove('selected')
}
this.offsetsEls[initiative_idx].style.strokeDashoffset = similarity * 100;
this.offsetsEls[initiative_idx].style.opacity = similarity;
});
}
}
var map;
document.addEventListener("DOMContentLoaded", (event) => {
map = new Map(document.getElementById('map'), document.getElementById('lines'));
map.init()
});
</script>
</head>
<body>
<div class="about">This map was created by Ruben van de Ven for the <em>Mapping Movements</em> pressure cooker,
organised by Creative Coding Utrecht for the Copernicus Institute of the Utrecht University. More information about the rationale is in <a href="https://git.rubenvandeven.com/r/mapping_movements/">the repository</a>.</div>
<div id="map"></div>
<svg preserveAspectRatio="xMidYMax meet" viewBox="-100,-100,200,100" id="lines"></svg>
</body>
</html>