-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts.stats
135 lines (117 loc) · 4.54 KB
/
index.ts.stats
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
$.get('all_statistics.json', function (data) {
console.log(data);
map.addSource("areas", {
type: 'vector',
url: 'https://api.bikedataproject.org/tiles/areas/mvt.json',
promoteId: 'id'
});
map.on('data', function (e) {
if (e.type == "style") return;
if (e.isSourceLoaded) {
console.log("Setting states");
map.querySourceFeatures("areas", {
sourceLayer: "areas"
}).forEach(function (f) {
if (f.properties && f.properties.id) {
var stats = data[f.properties.id];
if (stats) {
map.setFeatureState({
source: "areas",
sourceLayer: "areas",
id: f.properties.id
}, {
count: stats.count
});
}
}
});
}
});
// map.addLayer({
// 'id': 'areas-stats',
// 'type': 'fill',
// 'source': 'areas',
// 'source-layer': 'areas',
// 'maxzoom': 12,
// 'paint': {
// 'fill-color':
// ['case',
// ['==', ['feature-state', 'count'], null], 'rgba(255, 255, 255, 0)',
// ['>', ['feature-state', 'count'], 0], 'rgba(255,220,75, 1)',
// 'rgba(255, 255, 255, 0)'],
// 'fill-opacity': 0.1
// }
// }, "heatmap-heat");
// map.addLayer({
// 'id': 'areas-stats-boundaries',
// 'type': 'line',
// 'source': 'areas',
// 'source-layer': 'areas',
// 'layout': {
// 'line-join': 'round',
// 'line-cap': 'round'
// },
// 'paint': {
// 'line-color': '#ffd700',
// 'line-width': 1
// }
// });
// map.addLayer(
// {
// 'id': 'areas-stats-selected',
// 'type': 'fill',
// 'source': 'areas',
// 'source-layer': 'areas',
// 'paint': {
// 'fill-outline-color': '#484896',
// 'fill-color': '#6e599f',
// 'fill-opacity': 0.75
// },
// 'filter': ['in', 'id', '']
// }, 'areas-stats-boundaries');
// map.on('mousemove', 'areas-stats', function (e) {
// map.getCanvas().style.cursor = 'pointer';
// var feature = e.features[0];
// console.log(feature);
// overlay.innerHTML = '';
// var title = document.createElement('strong');
// title.textContent =
// feature.properties.name;
// var population = document.createElement('div');
// population.textContent =
// 'Total KMs: ' + feature.properties.km + ' ' +
// 'Total Time: ' + feature.properties.seconds + ' ' +
// 'Total Trips: ' + feature.properties.count;
// overlay.appendChild(title);
// overlay.appendChild(population);
// overlay.style.display = 'block';
// map.setFilter('areas-stats-selected', [
// 'in',
// 'id',
// feature.properties.id
// ]);
// popup
// .setLngLat(e.lngLat)
// .setText(feature.properties.name)
// .addTo(map);
// });
// map.on('mouseleave', 'areas-stats', function () {
// map.getCanvas().style.cursor = '';
// popup.remove();
// map.setFilter('areas-stats-selected', ['in', 'id', '']);
// overlay.style.display = 'none';
// });
// // Check if `statsData` source is loaded.
// function setAfterLoad(e) {
// if (e.sourceId === 'areas' && e.isSourceLoaded) {
// setStats();
// map.off('sourcedata', setAfterLoad);
// }
// }
// // If `areas` source is loaded, call `setStats()`.
// if (map.isSourceLoaded('areas')) {
// setStats();
// } else {
// map.on('sourcedata', setAfterLoad);
// }
});