From b73bf794c64cba4f3b3f300e4fda8160173f9114 Mon Sep 17 00:00:00 2001 From: Rushikesh Padsala <rushikesh.padsala@hft-stuttgart.de> Date: Wed, 25 Nov 2020 18:41:42 +0000 Subject: [PATCH] Update App.js --- public/App.js | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/public/App.js b/public/App.js index 092f40d..b955304 100644 --- a/public/App.js +++ b/public/App.js @@ -99,10 +99,18 @@ var initialPosition = Cesium.Cartesian3.fromDegrees(16.368084, 48.183257, 360); var landusestyle = new Cesium.Cesium3DTileStyle({ color : { conditions : [ - ["${NUTZUNG_LE} === 'Settlement Area'", "color('#FFFF00')"], - ["${NUTZUNG_LE} === 'Roadway'", "color('#808080')"], - ["${NUTZUNG_LE} === 'Vegetation'", "color('#008000')"], - ] + ["${NUTZUNG_L0} === 'Agriculture'", "color('#FFFF00')"], + ["${NUTZUNG_L0} === 'Commercial (Mixed Use)'", "color('#808080')"], + ["${NUTZUNG_L0} === 'Industrial and Commercial'", "color('#008000')"], + ["${NUTZUNG_L0} === 'Natural Space'", "color('#FFFF00')"], + ["${NUTZUNG_L0} === 'Other Traffic Use'", "color('#808080')"], + ["${NUTZUNG_L0} === 'Recreational Facility'", "color('#008000')"], + ["${NUTZUNG_L0} === 'Residential (Mixed Use)'", "color('#FFFF00')"], + ["${NUTZUNG_L0} === 'Social Infrastructure'", "color('#808080')"], + ["${NUTZUNG_L0} === 'Street Space'", "color('#008000')"], + ["${NUTZUNG_L0} === 'Technical (Engineering) Infrastructure'", "color('#FFFF00')"], + ["${NUTZUNG_L0} === 'Water Body'", "color('#808080')"], + ] }, show: true }); -- GitLab