-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.js
100 lines (86 loc) · 3.46 KB
/
main.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
// 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.
import {App} from "./app.js";
import {Util} from "./util.js";
import {Settings} from "./settings.js";
const params = (new URL(document.location)).searchParams;
const year = params.has("year") ? parseInt(params.get("year")) : Settings.year;
Util.updatePageUrl({year: year});
const level = params.has("level") ? params.get("level") : Settings.level;
const options = {};
Util.setOptionFromUrlParams(options, params, "year", parseInt);
Util.setOptionFromUrlParams(options, params, "tilesize", parseInt);
Util.setOptionFromUrlParams(options, params, "fetchradius", parseInt);
Util.setOptionFromUrlParams(options, params, "dropradius", parseInt);
Util.setOptionFromUrlParams(options, params, "level");
Util.setOptionFromUrlParams(options, params, "speed", parseFloat);
Util.setOptionFromUrlParams(options, params, "debug", Util.stringToBoolean);
Util.setOptionFromUrlParams(options, params, "lon", parseFloat);
Util.setOptionFromUrlParams(options, params, "lat", parseFloat);
Util.setOptionFromUrlParams(options, params, "pitch", parseFloat);
Util.setOptionFromUrlParams(options, params, "yaw", parseFloat);
const app = new App(document.getElementById('viewport'), options);
window.addEventListener('load', () => {
createKarttaSlider({
minValue: 1800,
maxValue: 2000,
stepSize: 1,
value: year,
change: (year) => {
app.setYear(year);
Util.updatePageUrl({year: year});
},
domElementToReplace: document.getElementById('year-slider-placeholder')
});
const /** !Element */ eyeLevelButton = document.getElementById('eyelevel-button');
const /** !Element */ streetLevelImg = document.getElementById('street-level-img');
const /** !Element */ birdLevelImg = document.getElementById('bird-level-img');
app.eyeLevelButtonStateSetter(level => {
if (level == 'street') {
birdLevelImg.classList.add('eyelevel-img-hidden');
streetLevelImg.classList.remove('eyelevel-img-hidden');
} else {
birdLevelImg.classList.remove('eyelevel-img-hidden');
streetLevelImg.classList.add('eyelevel-img-hidden');
}
});
app.setLevel(level);
function handleEyeLevelButtonClick(e) {
if (app.getLevel() == "street") {
app.setLevel("bird");
} else {
app.setMode("teleport");
}
}
streetLevelImg.onclick = handleEyeLevelButtonClick;
birdLevelImg.onclick = handleEyeLevelButtonClick;
streetLevelImg.ontouchstart = handleEyeLevelButtonClick;
birdLevelImg.ontouchstart = handleEyeLevelButtonClick;
const /** !Element */ infoImg = document.getElementById('info-img');
app.infoButtonStateSetter(infoMode => {
if (infoMode) {
infoImg.classList.add("pressed");
} else {
infoImg.classList.remove("pressed");
}
});
function handleInfoButtonClick(e) {
app.setMode(app.getMode() == "info" ? "normal" : "info");
}
infoImg.onclick = handleInfoButtonClick;
window.onresize = () => {
app.resize();
}
app.initialize();
});