draw lines
This commit is contained in:
parent
3ea4597622
commit
1a5f365175
1 changed files with 46 additions and 7 deletions
|
@ -46,7 +46,9 @@
|
||||||
border-radius: 0 7px 0 7px;
|
border-radius: 0 7px 0 7px;
|
||||||
content: ' ';
|
content: ' ';
|
||||||
}
|
}
|
||||||
.initiative.selected::before, .initiative:hover::before {
|
|
||||||
|
.initiative.selected::before,
|
||||||
|
.initiative:hover::before {
|
||||||
background: black;
|
background: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,18 +92,39 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
|
||||||
|
position: fixed;
|
||||||
|
top: 40px;
|
||||||
|
left: calc(20px + var(--marker-size) / 2);
|
||||||
|
right: 0;
|
||||||
|
height: calc(100vh - 100px);
|
||||||
|
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;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
class Map {
|
class Map {
|
||||||
constructor(mapEl) {
|
constructor(mapEl, lineEl) {
|
||||||
this.margin = 60;
|
this.margin = 20;
|
||||||
|
|
||||||
this.mapEl = mapEl;
|
this.mapEl = mapEl;
|
||||||
|
this.lineEl = lineEl;
|
||||||
this.initiatives = []
|
this.initiatives = []
|
||||||
this.similarities = {}
|
this.similarities = {}
|
||||||
this.offsets = []
|
this.offsets = []
|
||||||
|
this.offsetsEls = {}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,6 +167,16 @@
|
||||||
el.addEventListener('click', (e) => this.selectInitiative(initiative_idx));
|
el.addEventListener('click', (e) => this.selectInitiative(initiative_idx));
|
||||||
initiative['el'] = el;
|
initiative['el'] = el;
|
||||||
this.mapEl.appendChild(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 * .5) * 100)
|
||||||
|
line.setAttributeNS(null, "y2", Math.sin(this.offsets[initiative_idx] * Math.PI - Math.PI * .5) * 100)
|
||||||
|
|
||||||
|
this.lineEl.appendChild(line);
|
||||||
|
this.offsetsEls[initiative_idx] = line;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,14 +194,19 @@
|
||||||
const r = (similarity - 1) * radius;
|
const r = (similarity - 1) * radius;
|
||||||
const x = Math.cos(offset * Math.PI + Math.PI * .5) * r
|
const x = Math.cos(offset * Math.PI + Math.PI * .5) * r
|
||||||
const y = Math.sin(offset * Math.PI + Math.PI * .5) * r
|
const y = Math.sin(offset * Math.PI + Math.PI * .5) * r
|
||||||
el.style.left = `${centerX + x}px`;
|
|
||||||
el.style.top = `${centerY + y}px`;
|
|
||||||
|
|
||||||
if (this.selectedIndex == initiative_idx) {
|
if (this.selectedIndex == initiative_idx) {
|
||||||
el.classList.add('selected');
|
el.classList.add('selected');
|
||||||
|
el.style.top = `${centerY}px`;
|
||||||
|
el.style.left = `${centerX}px`;
|
||||||
} else {
|
} else {
|
||||||
|
el.style.top = `${centerY + y}px`;
|
||||||
|
el.style.left = `${centerX + x}px`;
|
||||||
el.classList.remove('selected')
|
el.classList.remove('selected')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.offsetsEls[initiative_idx].style.strokeDashoffset = similarity * 100;
|
||||||
|
this.offsetsEls[initiative_idx].style.opacity = similarity;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,7 +215,7 @@
|
||||||
|
|
||||||
var map;
|
var map;
|
||||||
document.addEventListener("DOMContentLoaded", (event) => {
|
document.addEventListener("DOMContentLoaded", (event) => {
|
||||||
map = new Map(document.getElementById('map'));
|
map = new Map(document.getElementById('map'), document.getElementById('lines'));
|
||||||
map.init()
|
map.init()
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -187,6 +225,7 @@
|
||||||
<div class="about">This map was created by Ruben van de Ven for the <em>Mapping Movements</em> pressure cooker,
|
<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.</div>
|
organised by Creative Coding Utrecht for the Copernicus Institute of the Utrecht University.</div>
|
||||||
<div id="map"></div>
|
<div id="map"></div>
|
||||||
|
<svg reserveaspectratio="xMinYMid meet" viewBox="0,-100,200,200" id="lines"></svg>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue