-
Notifications
You must be signed in to change notification settings - Fork 315
Open
Labels
Description
FeatureGeometry layer without fill color impossible to reach...
http://localhost:8080/examples/source_file_geojson_3d.html
style: {
fill: {
color: new THREE.Color(0xbbffbb),
extrusion_height: 80,
}
}
Suppression de la couleur: (D'apres la doc: "fill.color: Default is no value, which means no fill.")
style: {
fill: {
// color: new THREE.Color(0xbbffbb),
extrusion_height: 80,
}
}
Result:
with opacity a 0:
style: {
fill: {
// color: new THREE.Color(0xbbffbb),
extrusion_height: 80,
opacity: 0,
}
}
the result is similar:
I can't get stroke to work as well:
style: {
fill: {
// color: new THREE.Color(0xbbffbb),
extrusion_height: 80,
opacity: 0,
},
stroke: {
color: new THREE.Color(0xffffbb),
width: 2,
}
}

Reactions are currently unavailable
