Есть несколько способов сделать то, что вы просите:
fillExtrusionColor(match(get("SELECTED"),
true, get("FILL_COLOR"), // if true use this color
false, rgba(0, 0, 255.0f, 1.0f),
get("FILL_COLOR"))) // default color to use
или:
fillExtrusionColor(switchCase(
eq(get("SELECTED"), true), get("FILL_COLOR"), // if SELECTED == true use this color
eq(get("SELECTED"), false), rgba(0, 0, 255.0f, 1.0f),
get("FILL_COLOR")))) // default value
Подробнее вы можете узнать здесь .