forked from moneymanagerex/moneymanagerex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopers.html
More file actions
139 lines (125 loc) · 4.01 KB
/
developers.html
File metadata and controls
139 lines (125 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<meta charset="utf-8">
<!-- Based on https://bl.ocks.org/mbostock/4183330 -->
<style>
h2 {
position: absolute;
top: 410px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 18px;
text-align: center;
width: 800px;
color: white;
}
</style>
<h2></h2>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://d3js.org/queue.v1.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script>
var mmex_devs = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": { "name" : "Alen Siljak"},
"geometry": { "type": "Point", "coordinates": [16.3697, 48.2088] }
},
{
"type": "Feature",
"properties": { "name" : "Gabriele Villa"},
"geometry": { "type": "Point", "coordinates": [9.977855, 45.673776] }
},
{
"type": "Feature",
"properties": { "name" : "Lisheng Guan", "href" : "http://guanlisheng.com/" },
"geometry": { "type": "Point", "coordinates": [116.39053344726561, 39.916319613808135] }
},
{
"type": "Feature",
"properties": { "name" : "James Higley" },
"geometry": { "type": "Point", "coordinates": [-111.741117, 40.371423] }
},
{
"type": "Feature",
"properties": { "name" : "Patrick O'Malley" },
"geometry": { "type": "Point", "coordinates": [-95.1216, 39.5631] }
},
{
"type": "Feature",
"properties": { "name": "Stefano Giorgio" },
"geometry": { "type": "Point", "coordinates": [149.128894, -35.2819367] }
},
{
"type": "Feature",
"properties": { "name": "Nikolay Akimov" },
"geometry": { "type": "Point", "coordinates": [30.4001895, 60.0416222] }
},
{
"type": "Feature",
"properties": { "name": "Tomasz Słodkowicz" },
"geometry": { "type": "Point", "coordinates": [19.937, 50.062] }
},
{
"type": "Feature",
"properties": { "name": "Mark Whalley" },
"geometry": { "type": "Point", "coordinates": [-2.711, 53.385] }
},
{
"type": "Feature",
"properties": { "name": "Klaus Wich" },
"geometry": { "type": "Point", "coordinates": [11.5755, 48.1374] }
}
]
};
var width = 800,
height = 800;
var projection = d3.geo.orthographic()
.translate([width / 2, height / 2])
.scale(width / 2 - 20)
.clipAngle(90)
.precision(0.6);
var canvas = d3.select("body").append("canvas")
.attr("width", width)
.attr("height", height);
var c = canvas.node().getContext("2d");
var path = d3.geo.path()
.projection(projection)
.context(c);
var title = d3.select("h2");
queue()
.defer(d3.json, "https://unpkg.com/world-atlas@1/world/110m.json")
.await(ready);
function ready(error, world) {
if (error) throw error;
var globe = {type: "Sphere"},
land = topojson.feature(world, world.objects.land),
devs = mmex_devs.features,
borders = topojson.mesh(world, world.objects.countries, function(a, b) { return a !== b; }),
i = -1,
n = devs.length;
(function transition() {
d3.transition()
.duration(1250)
.each("start", function() {
title.text(devs[i = (i + 1) % n].properties.name);
})
.tween("rotate", function() {
var p = d3.geo.centroid(devs[i]),
r = d3.interpolate(projection.rotate(), [-p[0], -p[1]]);
return function(t) {
projection.rotate(r(t));
c.clearRect(0, 0, width, height);
c.fillStyle = "#00e", c.beginPath(), path(globe), c.fill();
c.fillStyle = "#080", c.beginPath(), path(land), c.fill();
c.strokeStyle = "#fff", c.lineWidth = .5, c.beginPath(), path(borders), c.stroke();
c.strokeStyle = "#000", c.lineWidth = 2, c.beginPath(), path(globe), c.stroke();
c.strokeStyle = "#f00", c.beginPath(), path(mmex_devs), c.stroke();
};
})
.transition()
.each("end", transition);
})();
}
d3.select(self.frameElement).style("height", height + "px");
</script>