-
Notifications
You must be signed in to change notification settings - Fork 7
/
map.js
149 lines (120 loc) · 3.92 KB
/
map.js
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
140
141
142
143
144
145
146
147
148
149
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
document.addEventListener("DOMContentLoaded", () => {
var antiqueStyleURL = '{{ APP_HOME_URL }}/antique_style.old.json';
var xrayStyleURL = '{{ APP_HOME_URL }}/xray_style.old.json';
var map = new mapboxgl.Map({
container: 'map', // container id
style: antiqueStyleURL, // stylesheet location
center: [-73.997381,40.740341], // starting position [lng, lat]lng: -73.99931073493184, lat: 40.74364982242477
zoom: 17, // starting zoom,
minZoom: 0,
hash: true
});
map.addControl(new mapboxgl.NavigationControl());
function reload() {
map.setStyle(styleURL);
}
const debugSplash = document.getElementById("debug-splash");
setTimeout(() => {
debugSplash.classList.add("hidden");
}, 750);
const timeSlider = document.getElementById("timeslider");
const range = timeSlider.querySelector(".range");
const bubble = timeSlider.querySelector(".bubble");
range.addEventListener("input", () => {
setBubble(range, bubble);
});
map.on('load', () => {
range.value = "{{ INITIAL_YEAR }}";
setBubble(range, bubble);
});
const debugPanel = document.getElementById("debug-panel");
document.addEventListener('keydown', e => {
if (e.key == "0") {
if (debugPanel.classList.contains("hidden")) {
debugPanel.classList.remove("hidden");
} else {
debugPanel.classList.add("hidden");
}
}
});
const debugCloseButton = document.getElementById("debug-close");
debugCloseButton.addEventListener('click', () => {
debugPanel.classList.add("hidden");
})
const debugGridCheckbox = document.getElementById("debug-grid");
debugGridCheckbox.addEventListener('change', () => {
if (debugGridCheckbox.checked) {
map.showTileBoundaries = true;
} else {
map.showTileBoundaries = false;
}
});
const inspectControl = new MapboxInspect({
showInspectButton: false,
showMapPopup: true
});
const debugInspectCheckbox = document.getElementById("debug-inspect");
debugInspectCheckbox.addEventListener('change', () => {
if (debugInspectCheckbox.checked) {
map.addControl(inspectControl);
} else {
map.removeControl(inspectControl);
// remove any remaining popup
popups = document.getElementsByClassName("mapboxgl-popup");
for (let i = 0; i < popups.length; ++i) {
popups[i].parentNode.removeChild(popups[i]);
}
}
});
document.getElementsByName("debug-map-style").forEach(radio => {
radio.addEventListener('change', e => {
console.log(radio.value);
if (radio.value == "antique") {
map.setStyle(antiqueStyleURL);
} else if (radio.value == "xray") {
map.setStyle(xrayStyleURL);
}
});
});
function setBubble(range, bubble) {
const val = range.value;
const min = range.min ? range.min : 0;
const max = range.max ? range.max : 100;
const newVal = Number(((val - min) * 100) / (max - min));
bubble.innerHTML = val;
const width = bubble.offsetWidth;
// bubble.style.left = "calc(" + newVal + "% + " + (8 - newVal * 0.15) + "px)";
bubble.style.left = "calc(" + newVal + "% - " + (width/2) + "px)";
filter =
['all',
['<=', ['get', 'start_date'], val ],
['any',
['!', ['has', 'end_date']],
['>=', ['get', 'end_date'], val ]
]
];
[
"buildings",
"buildings__1",
"buildings__2",
"buildings__3",
"buildings__4",
"buildings_outline",
"building_names",
"building_names__1"
].forEach(layer => map.setFilter(layer, filter));
}
});