Created
April 20, 2020 21:03
-
-
Save JoeThunyathep/36a8fac75c3001b0b236f1d3b956ab45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tileset.style = new Cesium.Cesium3DTileStyle({ | |
color: { | |
conditions: [ | |
['${Height} >= 300', 'color("#FF442E")'], | |
['${Height} >= 200', 'color("#FF8000")'], | |
['${Height} >= 100', 'color("#E7A700")'], | |
['${Height} >= 50', 'color("#CFC600")'], | |
['${Height} >= 25', 'color("#A4B600")'], | |
['${Height} >= 10', 'color("#6A9E00")'], | |
['true', 'rgb(127, 59, 8)'] | |
] | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment