custom.js 29.3 KB
Newer Older
Patrick's avatar
Patrick committed
1

Patrick's avatar
Patrick committed
2
3
4
5
6
 window.onload = function(){
// //   var scale = 'scale(1)';
// //   document.body.style.webkitTransform =  scale;    // Chrome, Opera, Safari
// //   document.body.style.msTransform =   scale;       // IE 9
// //   document.body.style.transform = scale;     // General
Patrick's avatar
Patrick committed
7
8
// $("#tour-button").hide();

Patrick's avatar
Patrick committed
9
removebuildings();
Patrick's avatar
Patrick committed
10
// removenoisemap();
Patrick's avatar
Patrick committed
11
12
// remove footer
document.querySelector('footer').style = 'display: none';
Patrick's avatar
Patrick committed
13
 }
Patrick's avatar
Patrick committed
14

Patrick's avatar
Patrick committed
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
document.getElementById("btn_nord").addEventListener("mouseover", mouseOver);
document.getElementById("btn_nord").addEventListener("mouseout", mouseOut);

function mouseOver() {


    var layerNamesToActivate = ["AreaNord"]
    var layerNamesToActivate2 = ["LocationNordB"]
    var layers = framework.getLayers();

    for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layerNamesToActivate.indexOf(layer.name) >= 0) {
    layer.activate(true);
    }

  }  
  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layerNamesToActivate2.indexOf(layer.name) >= 0) {
    layer.activate(true);
    }

  }

}
function mouseOut() {

  var layerNamesToActivate = ["AreaNord"]
  var layerNamesToActivate2 = ["LocationNordB"]

  var layers = framework.getLayers();

  for (var i = 0; i< layers.length; i++) {
  var layer = layers[i];
  if(layerNamesToActivate.indexOf(layer.name) >= 0) {
  layer.activate(false);
  }

  }
  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layerNamesToActivate2.indexOf(layer.name) >= 0) {
    layer.activate(false);
    }

  }
}

document.getElementById("btn_bock").addEventListener("mouseover", mouseOver2);
document.getElementById("btn_bock").addEventListener("mouseout", mouseOut2);

function mouseOver2() {

    var layerNamesToActivate = ["AreaBock"]
    var layerNamesToActivate2 = ["LocationBock"]

    var layers = framework.getLayers();

    for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layerNamesToActivate.indexOf(layer.name) >= 0) {
    layer.activate(true);
    }

  }
  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layerNamesToActivate2.indexOf(layer.name) >= 0) {
    layer.activate(true);
    }

  }

}

function mouseOut2() {
  var layerNamesToActivate = ["AreaBock"]
  var layerNamesToActivate2 = ["LocationBock"]

  var layers = framework.getLayers();

  for (var i = 0; i< layers.length; i++) {
  var layer = layers[i];
  if(layerNamesToActivate.indexOf(layer.name) >= 0) {
  layer.activate(false);
  }

  }
  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layerNamesToActivate2.indexOf(layer.name) >= 0) {
    layer.activate(false);
    }
  }
}

 function removenoisemap(){

  var heightOffset = 0.1;
  var subscription = vcs.vcm.Framework.getInstance().subscribe("LAYER_ACTIVATED", function(layer) {
  if(layer.name === "Streetday") {
  layer.cesium3DTileset.readyPromise.then(function(tileset) {
  var boundingSphere = tileset.boundingSphere;
  var cartographic = Cesium.Cartographic.fromCartesian(boundingSphere.center);
  var surface = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, 0.0);
  var offset = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, heightOffset);
  var translation = Cesium.Cartesian3.subtract(offset, surface, new Cesium.Cartesian3());
  tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation);
  });
  console.log("StuffEnded")
  vcs.vcm.Framework.getInstance().unsubscribeByKey(subscription);
  }
Patrick's avatar
Patrick committed
128
129
  });
  var subscription2 = vcs.vcm.Framework.getInstance().subscribe("LAYER_ACTIVATED", function(layer) {
Patrick's avatar
Patrick committed
130
131
132
133
134
135
136
137
138
  if(layer.name === "Streetnight") {
    layer.cesium3DTileset.readyPromise.then(function(tileset) {
    var boundingSphere = tileset.boundingSphere;
    var cartographic = Cesium.Cartographic.fromCartesian(boundingSphere.center);
    var surface = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, 0.0);
    var offset = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, heightOffset);
    var translation = Cesium.Cartesian3.subtract(offset, surface, new Cesium.Cartesian3());
    tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation);
    });
Patrick's avatar
Patrick committed
139
    vcs.vcm.Framework.getInstance().unsubscribeByKey(subscription2);
Patrick's avatar
Patrick committed
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
    }
  });

  var frameworkSTU = vcs.vcm.Framework.getInstance();
  var layersSTU = frameworkSTU.getLayers();

  var layernameStuttgartTotal = ["Streetday"]
  var layernameStuttgartTotal2 = ["Streetnight"]
  var layerIndexStuttgartTotal2
  var layerIndexStuttgartTotal

  var frameworkSTU = vcs.vcm.Framework.getInstance();
  var layersSTU = frameworkSTU.getLayers();
  for (var i = 0; i< layersSTU.length; i++) {
    var layerst = layersSTU[i];
    // console.log(i)

      if(layernameStuttgartTotal.indexOf(layerst.name) >= 0) {
      layerIndexStuttgartTotal = i
      }
      if(layernameStuttgartTotal2.indexOf(layerst.name) >= 0) {
        layerIndexStuttgartTotal2 = i
      } 
    }
    
    var layerSTU = layersSTU[layerIndexStuttgartTotal];
    var layerSTU2 = layersSTU[layerIndexStuttgartTotal2];

  var tilesetSTU = layerSTU.cesium3DTileset;
  var tilesetSTU2 = layerSTU2.cesium3DTileset;

  var timeout = setInterval(function() {
    console.log(layerSTU.active)

    if(layerSTU.active) {

        tilesetSTU.style = new Cesium.Cesium3DTileStyle({
          color: {
            conditions: [
              ["${DB_H_RD} <= 999","color('#B7D9B1','1')"]//,
               //["${DB_High_LD} === 35","color('#B7D9B1','1')"]//,
              // ["true", "color('#FFFFFF')"],
            ],
          },
        });
   
        tilesetSTU2.style = new Cesium.Cesium3DTileStyle({
          color: {
            conditions: [
              ["${DB_H_Rail} <= 999","color('#B7D9B1','1')"]//,
               //["${DB_High_LD} === 35","color('#B7D9B1','1')"]//,
              // ["true", "color('#FFFFFF')"],
            ],
          },
        });
        // console.log("")
      

      clearInterval(timeout); 
    } 
}, 1000);
    
};
Patrick's avatar
Patrick committed
203

Patrick's avatar
Patrick committed
204
205
206
207
208
209
var openquestionaire = function(){

    var framework = vcs.vcm.Framework.getInstance();
    var layers = framework.getLayers();
    var layerBStr = layers[0];
    // showTour();
Patrick's avatar
Patrick committed
210

Patrick's avatar
Patrick committed
211
212
213
214
215
216
217
218
219
220
221
222
223
224

    layerBStr.highlight({"UUID_fcbe96cd-dd5f-425c-9d20-bbdcbd580e72":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_e9b699f1-d0fc-4a27-8723-56a0e26c72e8":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_28c63827-bd5c-46f8-8519-e305aeab00a5":Cesium.Color.fromCssColorString("#BB8FCE")})

    layerBStr.highlight({"UUID_fc7f8988-e62d-4769-9650-28a3609632d2":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_ab9268e8-590f-40fb-9e44-2832ff912e85":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_022ef041-dd36-403f-b890-0af45fa8bec7":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_d6facabb-3559-48d3-913f-e54a37243417":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_13a5effb-8ecc-41e1-8527-e1a810fc8b9a":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_898a14f3-977e-4edd-bea1-b88a815f3fa4":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_42fa857e-ba07-4afd-8848-8a801f0a895f":Cesium.Color.fromCssColorString("#BB8FCE")})
    layerBStr.highlight({"UUID_bd9ace15-693e-440a-9605-c3892bc44cb8":Cesium.Color.fromCssColorString("#BB8FCE")})

Patrick's avatar
Patrick committed
225

Patrick's avatar
Patrick committed
226
227
228
229
230
231
232
233
234
235
236
    var x = document.getElementsByClassName("contentWrap");
    x.innerHTML = "Hello World!"
}

function stopStory() {
    document.getElementById("tour-frame").style.display = "none"; // Click on the checkbox
    // window.mobilecheck = function() {
      var check = false;
      (function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))) check = true;})(navigator.userAgent||navigator.vendor||window.opera);
      console.log(check);
      // return check;
Patrick's avatar
Patrick committed
237
    // };
Patrick's avatar
Patrick committed
238
239
}

Patrick's avatar
Patrick committed
240
241
242
243
244
var layerfix = ["test"]
var layerfix01 = ["StuttgartLocal"]
var layerfix02 = ["StuttgartPart"]
var layerfix03 = ["Openstreetmap layer"]
var layerfix04 = ["WMS layer"]
Patrick's avatar
Patrick committed
245
246
247
var layerfix11 = ["Streetday"]
var layerfix12 = ["Streetnight"]
var layerfix13 = ["BockArea"]
Patrick's avatar
Patrick committed
248

Patrick's avatar
Patrick committed
249
250
251
function showtourSpecific(specify) {
    if (specify == 'menu'){
      vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(vcs.vcm.Framework.getInstance().viewpoints.Böckingerstraße)
Patrick's avatar
Patrick committed
252
      document.getElementById("Expertenmodus").style.display = "block";
Patrick's avatar
Patrick committed
253
      document.getElementById("projektOne").style.display = "none";
Patrick's avatar
Patrick committed
254
255
256
    } else if (specify == 'main'){
      vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(vcs.vcm.Framework.getInstance().viewpoints.Böckingerstraße)
      document.getElementById("Expertenmodus").style.display = "none";
Patrick's avatar
Patrick committed
257
      document.getElementById("projektOne").style.display = "block";
Patrick's avatar
Patrick committed
258
259
260
      var element = document.getElementById("icon_lock");
      element.classList.add("fa-lock");
      element.classList.remove("fa-unlock");
Patrick's avatar
Patrick committed
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
      var layer01 = ["LocationFour"]
      var layer02 = ["LocationThree"]
      var layer03 = ["LocationTwo"]
      var layer04 = ["LocationOne"]
      var layer05 = ["Questionnaire"]
  
  
      var framework = vcs.vcm.Framework.getInstance();
      var layers = framework.getLayers();
    
      for (var i = 0; i< layers.length; i++) {
        var layer = layers[i];
        if(layer01.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layer02.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layer03.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layer04.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layer05.indexOf(layer.name) >= 0){
Patrick's avatar
Patrick committed
282
          layer.activate(false);
Patrick's avatar
Patrick committed
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
        } else if (layerfix.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layerfix01.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layerfix02.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layerfix03.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else if (layerfix04.indexOf(layer.name) >= 0){
          layer.activate(true);
        } else {
          layer.activate(false);
        }
      }
      unhighlightStuff();
Patrick's avatar
Patrick committed
298
    }
Patrick's avatar
Patrick committed
299
300
301
302
303
    // var oldstuff = document.getElementById("old")
    // var para = document.createElement("P");
    // para.innerHTML = "This is a paragraph.";
    // document.getElementById("old").innerHTML = para.innerHTML;
    document.getElementById("UmfrageOne").style.display = "none";
Patrick's avatar
Patrick committed
304
    document.getElementById("NordbahnhofInfo").style.display = "none";
Patrick's avatar
Patrick committed
305
    document.getElementById("Energiekonzept").style.display = "none";
Patrick's avatar
Patrick committed
306
    document.getElementById("Navigation").style.display = "none";
Patrick's avatar
Patrick committed
307
    
Patrick's avatar
Patrick committed
308
    document.getElementById("IntroProj").style.display = "none";
Patrick's avatar
Patrick committed
309
    
Patrick's avatar
Patrick committed
310
    showTour();
Patrick's avatar
Patrick committed
311

Patrick's avatar
Patrick committed
312
313


Patrick's avatar
Patrick committed
314
    
Patrick's avatar
Patrick committed
315
    noisemap('offS')
Patrick's avatar
Patrick committed
316
    // expstate = true;
Patrick's avatar
Patrick committed
317
    onoff()
Patrick's avatar
Patrick committed
318
319
320


    document.getElementById('headOne').scrollIntoView({ left: 0, block: 'start', behavior: 'smooth' });
Patrick's avatar
Patrick committed
321
322
323
324
325
}


// ======================================================================================

Patrick's avatar
Patrick committed
326

Patrick's avatar
Patrick committed
327

Patrick's avatar
Patrick committed
328

Patrick's avatar
Patrick committed
329

Patrick's avatar
Patrick committed
330
331


Patrick's avatar
Patrick committed
332
// =========================================================================
Patrick's avatar
Patrick committed
333
function EnergiekonzeptFunction(content){
Patrick's avatar
Patrick committed
334
335
    vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(vcs.vcm.Framework.getInstance().viewpoints.stockach)

Patrick's avatar
Patrick committed
336
337
    // var layerNamesToDeactivate = ["ProjektOne"]
    // var layers = framework.getLayers();
Patrick's avatar
Patrick committed
338

Patrick's avatar
Patrick committed
339

Patrick's avatar
Patrick committed
340
341
342
343
344
345
346
    // document.getElementById("UmfrageOne").style.display = "none";
    // document.getElementById("NordbahnhofInfo").style.display = "none";
    // document.getElementById("Navigation").style.display = "none";
    // document.getElementById("projektOne").style.display = "none";
    // document.getElementById("Energiekonzept").style.display = "block";
    // document.getElementById("IntroProj").style.display = "none";
    // document.getElementById("Expertenmodus").style.display = "block";
Patrick's avatar
Patrick committed
347
348
    showTour();

Patrick's avatar
Patrick committed
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
    if (content =="main"){

    }else if(content=="Electricity"){
      document.getElementById("energydemand").click();
    }else if(content=="heat"){
      document.getElementById("energydemand").click();
    }else if(content=="Nat"){
      document.getElementById("energydemand").click();
    }else if(content=="Aux Gas Boiler"){
      document.getElementById("thermalstorage").click();
    }else if(content=="Aux Heater"){
      document.getElementById("thermalstorage").click();
    }else if(content=="Heat Pump"){
      document.getElementById("heatpump").click();
    }else if(content=="Tub"){
      document.getElementById("energydemand").click();
    }else if(content=="Tank"){
      document.getElementById("thermalstorage").click();
    }else if(content=="House Water"){
      document.getElementById("energydemand").click();
    }else if(content=="House with Lightning"){
      document.getElementById("localEnergy").click();
    }else if(content=="Solarpanel"){
      document.getElementById("solarpotential").click();
    }else if(content=="Batterie"){
      document.getElementById("batterystorage").click();
    };

Patrick's avatar
Patrick committed
377
378
379
380
    // for (var i = 0; i< layers.length; i++) {
    //     var layer = layers[i];
    //     if(layerNamesToDeactivate.indexOf(layer.getName()) >= 0) {
    //       layer.activate(false);
Patrick's avatar
Patrick committed
381
382
383
384
385
    //     }
    //   }



Patrick's avatar
Patrick committed
386
      // var resultSimS = (callSimS());
Patrick's avatar
Patrick committed
387

Patrick's avatar
Patrick committed
388
389
      // heating = JSON.parse(fixJson(resultSimS.return));
      // console.log(resultSimS)
Patrick's avatar
Patrick committed
390
391
}

Patrick's avatar
Patrick committed
392
393
394
395
396
397
398
function SimStadtStuff(){
      var resultSimS = (callSimS());

      heating = JSON.parse(fixJson(resultSimS.return));
      console.log(resultSimS)
}

Patrick's avatar
Patrick committed
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
function highlightFeatures(content){
  if(content=="energydemand"){
    outlineReverse();
    document.getElementById("mapElectricityID").style.outline = "1px";
    document.getElementById("mapHeatID").style.outline = "1px";
    document.getElementById("mapNatID").style.outline = "1px";
    document.getElementById("mapTubID").style.outline = "1px";
    document.getElementById("mapHouseWaterID").style.outline = "1px";
    document.getElementById("mapHouseElec").style.outline = "1px";
  }else if(content =="solarpotential"){
    outlineReverse();
    document.getElementById("mapSolarpanelID").style.outline = "1px";
  }else if(content =="heatpump"){
    outlineReverse();
    document.getElementById("mapHeatPumpID").style.outline = "1px";
  }else if(content =="thermalstorage"){
    outlineReverse();
    document.getElementById("mapAuxGasBoilerID").style.outline = "1px";
    document.getElementById("mapAuxHeaterID").style.outline = "1px";
    document.getElementById("mapTankID").style.outline = "1px";
  }else if(content =="batterystorage"){
    outlineReverse();
    document.getElementById("mapBatterieID").style.backgroundColor = "lightblue";
    document.getElementById("mapBatterieID").style.outline = "1px";
  }
Patrick's avatar
Patrick committed
424

Patrick's avatar
Patrick committed
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441

  function outlineReverse(){
    document.getElementById("mapElectricityID").style.outline = "none";
    document.getElementById("mapHeatID").style.outline = "none";
    document.getElementById("mapNatID").style.outline = "none";
    document.getElementById("mapTubID").style.outline = "none";
    document.getElementById("mapHouseWaterID").style.outline = "none";
    document.getElementById("mapHouseElec").style.outline = "none";
    document.getElementById("mapSolarpanelID").style.outline = "none";
    document.getElementById("mapHeatPumpID").style.outline = "none";
    document.getElementById("mapAuxGasBoilerID").style.outline = "none";
    document.getElementById("mapAuxHeaterID").style.outline = "none";
    document.getElementById("mapTankID").style.outline = "none";
    document.getElementById("mapBatterieID").style.outline = "none";
  }

}
Patrick's avatar
Patrick committed
442

Patrick's avatar
Patrick committed
443
444
445

function Questionnaire() {

Patrick's avatar
Patrick committed
446
447
448
449
450
451
452
453
  // document.getElementById("projektOne").style.display = "none";
  // document.getElementById("Energiekonzept").style.display = "none";
  // document.getElementById("NordbahnhofInfo").style.display = "none";
  // document.getElementById("NoiseInfo").style.display = "none";
  // document.getElementById("Navigation").style.display = "none";
  // document.getElementById("UmfrageOne").style.display = "block";
  // document.getElementById("IntroProj").style.display = "none";
  // document.getElementById("Expertenmodus").style.display = "none";
Patrick's avatar
Patrick committed
454
  showTour();
Patrick's avatar
Patrick committed
455
456
  document.getElementById("btn_umfrage_bock").click();
  document.getElementById('umfrage_bock').scrollIntoView({ left: 0, block: 'start', behavior: 'smooth' });
Patrick's avatar
Patrick committed
457

Patrick's avatar
Patrick committed
458
  
Patrick's avatar
Patrick committed
459
460
461
462
}



Patrick's avatar
Patrick committed
463
464
465
466
function goHome(){
  var viewp = vcs.vcm.Framework.getInstance().viewpoints.startview
  $("#tour-button").hide();
  showMap()
Patrick's avatar
Patrick committed
467

Patrick's avatar
Patrick committed
468
469
  //stopStory()
  vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(viewp)
Patrick's avatar
Patrick committed
470
}
Patrick's avatar
Patrick committed
471

Patrick's avatar
Patrick committed
472
function Introshow(){
Patrick's avatar
Patrick committed
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488

  var comp = document.getElementsByClassName("compass");
comp[0].classList.add("leftstuff");

var comp1 = document.getElementsByClassName("control-box-container");
comp1[0].classList.add("leftstuff");

var comp2 = document.getElementsByClassName("shadow-control-box-wrap");
comp2[0].classList.add("leftstuff");

var comp3 = document.getElementById("widget-box");
comp3.classList.add("leftstuff");




Patrick's avatar
Patrick committed
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
  document.getElementById("projektOne").style.display = "none";
  document.getElementById("Energiekonzept").style.display = "none"; 
  document.getElementById("UmfrageOne").style.display = "none";
  document.getElementById("NoiseInfo").style.display = "none";
  document.getElementById("Navigation").style.display = "none";
  document.getElementById("NordbahnhofInfo").style.display = "none";
  document.getElementById("IntroProj").style.display = "block";
  document.getElementById("Expertenmodus").style.display = "none";
  // startStory();
  showTour();
  var viewp = vcs.vcm.Framework.getInstance().viewpoints.startview
  vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(viewp)
  unhighlightStuff();
  var framework = vcs.vcm.Framework.getInstance();
  var layers = framework.getLayers();

  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if (layerfix.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix02.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix03.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix04.indexOf(layer.name) >= 0){
      layer.activate(true);
Patrick's avatar
Patrick committed
517
518
    } else if (layerfix13.indexOf(layer.name) >= 0){
      layer.activate(true);
Patrick's avatar
Patrick committed
519
520
521
522
    } else {
      layer.activate(false);
    }
  }
Patrick's avatar
Patrick committed
523
  // noisemap('offS')
Patrick's avatar
Patrick committed
524
525
526
527
  unhighlightStuff();
  // document.getElementById("tour-frame").style.display = "block";
  expstate = true;
  onoff()
Patrick's avatar
Patrick committed
528
529
530
531

  var element = document.getElementById("icon_lock");
  element.classList.add("fa-lock");
  element.classList.remove("fa-unlock");
Patrick's avatar
Patrick committed
532
533
}

Patrick's avatar
Patrick committed
534
535
536
537
function Navigationshow() {
  document.getElementById("projektOne").style.display = "none";
  document.getElementById("Energiekonzept").style.display = "none"; 
  document.getElementById("UmfrageOne").style.display = "none";
Patrick's avatar
Patrick committed
538
  document.getElementById("NoiseInfo").style.display = "none";
Patrick's avatar
Patrick committed
539
540
  document.getElementById("Navigation").style.display = "block";
  document.getElementById("NordbahnhofInfo").style.display = "none";
Patrick's avatar
Patrick committed
541
542
  document.getElementById("IntroProj").style.display = "none";
  document.getElementById("Expertenmodus").style.display = "none";
Patrick's avatar
Patrick committed
543
544
545
 
  showTour();
}
Patrick's avatar
Patrick committed
546
547
548
549
550
//---------------------------------------------------------------------------------------
function NordbahnhofText() {
  document.getElementById("projektOne").style.display = "none";
  document.getElementById("Energiekonzept").style.display = "none"; 
  document.getElementById("UmfrageOne").style.display = "none";
Patrick's avatar
Patrick committed
551
  document.getElementById("Navigation").style.display = "none";
Patrick's avatar
Patrick committed
552
  document.getElementById("NoiseInfo").style.display = "none";
Patrick's avatar
Patrick committed
553
  document.getElementById("NordbahnhofInfo").style.display = "block";
Patrick's avatar
Patrick committed
554
555
  document.getElementById("IntroProj").style.display = "none";
  document.getElementById("Expertenmodus").style.display = "none";
Patrick's avatar
Patrick committed
556
 
Patrick's avatar
Patrick committed
557
  showTour();
Patrick's avatar
Patrick committed
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
  showgraph();
  var viewp = vcs.vcm.Framework.getInstance().viewpoints.NordBView
  vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(viewp) 

  var layer01 = ["ProjektNord"]




  var framework = vcs.vcm.Framework.getInstance();
  var layers = framework.getLayers();

  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layer01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix02.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix03.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix04.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else {
      layer.activate(false);
    }
  }
  noisemap('offS')
  unhighlightStuff();
  expstate = true;
Patrick's avatar
Patrick committed
591
  // onoff()
Patrick's avatar
Patrick committed
592
593
594
595

  var element = document.getElementById("icon_lock");
  element.classList.add("fa-lock");
  element.classList.remove("fa-unlock");
596
597
}

Patrick's avatar
Patrick committed
598

Patrick's avatar
Patrick committed
599
600
601
602
603
604
605
606
607
608
609
function NoiseText(proj) {
  if (proj == true){
  document.getElementById("projektOne").style.display = "none";
  document.getElementById("Energiekonzept").style.display = "none"; 
  document.getElementById("UmfrageOne").style.display = "none";
  document.getElementById("Navigation").style.display = "none";
  document.getElementById("NordbahnhofInfo").style.display = "none";
  document.getElementById("NoiseInfo").style.display = "block";
  document.getElementById("IntroProj").style.display = "none";
  document.getElementById("Expertenmodus").style.display = "none";
  }
Patrick's avatar
Patrick committed
610
  showTour();
Patrick's avatar
Patrick committed
611
612
613

  var viewp = vcs.vcm.Framework.getInstance().viewpoints.NoiseView
  vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(viewp) 
Patrick's avatar
Patrick committed
614
  
Patrick's avatar
Patrick committed
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646

  var layer01 = ["NoiseLocation"]
  var layer02 = ["NoiseLocation29212"]
  var layer03 = ["NoiseLocation53627"]

  var framework = vcs.vcm.Framework.getInstance();
  var layers = framework.getLayers();

  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layer01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer02.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer03.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix02.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix03.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix04.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else {
      layer.activate(false);
    }
  }
  noisemap('Streetday')
  unhighlightStuff();
Patrick's avatar
Patrick committed
647
  // HistNoiseData("49368"); 
Patrick's avatar
Patrick committed
648
649
650
  var element = document.getElementById("icon_lock");
  element.classList.add("fa-lock");
  element.classList.remove("fa-unlock");
Patrick's avatar
Patrick committed
651
652
653

  expstate = true;
  onoff()
Patrick's avatar
Patrick committed
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726


  var layerIndexStuttgartTotal

  var layernameStuttgartTotal = ["Streetday"]

  var frameworkSTU = vcs.vcm.Framework.getInstance();
  var layersSTU = frameworkSTU.getLayers();
  for (var i = 0; i< layersSTU.length; i++) {
    var layerst = layersSTU[i];
    if(layernameStuttgartTotal.indexOf(layerst.name) >= 0) {
      layerIndexStuttgartTotal = i
  }}

  var layerSTU = layersSTU[layerIndexStuttgartTotal];
  var tilesetSTU = layerSTU.cesium3DTileset;
  
  var timeout = setInterval(function() {
    console.log(layerSTU.active)
    if(layerSTU.active) {
      console.log("")
      tilesetSTU.style = new Cesium.Cesium3DTileStyle({
        color: {
          conditions: [
            ["${DB_High_LD} > 80","color('#1A5784')"],
            ["${DB_High_LD} > 79","color('#3481B8')"],
            ["${DB_High_LD} > 70","color('#992572')"],
            ["${DB_High_LD} > 65","color('#8D1D2C')"],
            ["${DB_High_LD} > 60","color('#C1121C')"],
            ["${DB_High_LD} > 55","color('#FA842B')"],
            ["${DB_High_LD} > 50","color('#AF8A54')"],
            ["${DB_High_LD} > 45","color('#EAF044')"],
            ["${DB_High_LD} > 40","color('#026A52')"],
            ["${DB_High_LD} > 35","color('#48A43F')"],
            ["${DB_High_LD} <= 35","color('#B7D9B1')"]//,
             //["${DB_High_LD} === 35","color('#B7D9B1','1')"]//,
            // ["true", "color('#FFFFFF')"],
          ],
        },
      });

      clearInterval(timeout); 
    } 
}, 1000);
  // if( layerSTU.active ) {
  //   tilesetSTU.style = new Cesium.Cesium3DTileStyle({
  //     color: {
  //       conditions: [
  //         ["${DB_High_LD} > 80","color('#1A5784')"],
  //         ["${DB_High_LD} > 79","color('#3481B8')"],
  //         ["${DB_High_LD} > 70","color('#992572')"],
  //         ["${DB_High_LD} > 65","color('#8D1D2C')"],
  //         ["${DB_High_LD} > 60","color('#C1121C')"],
  //         ["${DB_High_LD} > 55","color('#FA842B')"],
  //         ["${DB_High_LD} > 50","color('#AF8A54')"],
  //         ["${DB_High_LD} > 45","color('#EAF044')"],
  //         ["${DB_High_LD} > 40","color('#026A52')"],
  //         ["${DB_High_LD} > 35","color('#48A43F')"],
  //         ["${DB_High_LD} <= 35","color('#B7D9B1')"]//,
  //          //["${DB_High_LD} === 35","color('#B7D9B1','1')"]//,
  //         // ["true", "color('#FFFFFF')"],
  //       ],
  //     },
  //   });

  // }




};


Patrick's avatar
Patrick committed
727

Patrick's avatar
Patrick committed
728
729
730
731
732
733
734
735
736
737
738
739
740
741
function Expert() {
  document.getElementById("projektOne").style.display = "none";
  document.getElementById("Energiekonzept").style.display = "none"; 
  document.getElementById("UmfrageOne").style.display = "none";
  document.getElementById("Navigation").style.display = "none";
  document.getElementById("NordbahnhofInfo").style.display = "none";
  document.getElementById("NoiseInfo").style.display = "none";
  document.getElementById("IntroProj").style.display = "none";
  document.getElementById("Expertenmodus").style.display = "block";
  showTour();

  var viewp = vcs.vcm.Framework.getInstance().viewpoints.startview
  vcs.vcm.Framework.getInstance().getActiveMap().gotoViewPoint(viewp) 
  
742

Patrick's avatar
Patrick committed
743
744
745
746
747
748
749
750
751
  var layer01 = ["NoiseLocation"]
  var layer02 = ["NoiseLocation29212"]
  var layer03 = ["NoiseLocation53627"]
  var layer04 = ["ProjektNord"]
  var layer05 = ["LocationFour"]
  var layer06 = ["LocationThree"]
  var layer07 = ["LocationTwo"]
  var layer08 = ["LocationOne"]
  var layer09 = ["Questionnaire"]
Patrick's avatar
Patrick committed
752
  var layer10 = ["ProjektOne"]
Patrick's avatar
Patrick committed
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775

  var framework = vcs.vcm.Framework.getInstance();
  var layers = framework.getLayers();

  for (var i = 0; i< layers.length; i++) {
    var layer = layers[i];
    if(layer01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer02.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer03.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer04.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer05.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer06.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer07.indexOf(layer.name) >= 0){
      layer.activate(true);
    }else if (layer08.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layer09.indexOf(layer.name) >= 0){
Patrick's avatar
Patrick committed
776
      layer.activate(false);
Patrick's avatar
Patrick committed
777
778
    } else if (layer10.indexOf(layer.name) >= 0){
      layer.activate(true);
Patrick's avatar
Patrick committed
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
    } else if (layerfix.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix01.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix02.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix03.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else if (layerfix04.indexOf(layer.name) >= 0){
      layer.activate(true);
    } else {
      layer.activate(false);
    }
  }

Patrick's avatar
Patrick committed
794
795
796
797
  var element = document.getElementById("icon_lock");
  element.classList.remove("fa-lock");
  element.classList.add("fa-unlock");

Patrick's avatar
Patrick committed
798
799
800
  unhighlightStuff();
  // HistNoiseData("49368"); 
}