Skip to content

Instantly share code, notes, and snippets.

@JoeThunyathep
Created April 20, 2020 21:03
Show Gist options
  • Save JoeThunyathep/36a8fac75c3001b0b236f1d3b956ab45 to your computer and use it in GitHub Desktop.
Save JoeThunyathep/36a8fac75c3001b0b236f1d3b956ab45 to your computer and use it in GitHub Desktop.
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