In the coloring of the PLATEAU 3D city model, you can combine attributes and color-code buildings, not just using the "height" attribute as done on the previous page.
Here, in addition to the "height" attribute, the "use" attribute will also be used for coloring.
#f8a99c
#923b2d
{
"show": "true",
"color": {
"conditions": [
[
"(${_height} > 50) && (${用途} === '業務施設')",
"color('#f8a99c')"
],
[
"(${_height} < 10) && (${用途} === '商業施設')",
"color('#923b2d')"
]
]
}
}
Then, it will be displayed like this.