From 8e474bad99cb6966587be8f7c85ab7391c018744 Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Mon, 1 Dec 2025 10:53:08 +0100 Subject: [PATCH 1/2] feat: allow variable type for extrusion base Needs https://github.com/Terralego/TerraVisu/pull/1038 --- .../components/tabs/StyleTab/Style/WizardFillExtrusion.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js b/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js index 3e8bc3e28..bccfcc39f 100644 --- a/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js +++ b/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js @@ -77,6 +77,7 @@ const WizardFillExtrusion = ({ path, fields, getValuesOfProperty }) => { choices={[ { id: 'none', name: translate('style-editor.style-type.none') }, { id: 'fixed', name: translate('style-editor.style-type.fixed') }, + { id: 'variable', name: translate('style-editor.style-type.variable') }, ]} helperText={false} initialValue="none" From 62b29198000ffdb013b04a674a236c3171061fe6 Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Mon, 1 Dec 2025 11:09:55 +0100 Subject: [PATCH 2/2] feat: disable legend for fill extrusion --- .../components/tabs/StyleTab/Style/WizardFillExtrusion.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js b/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js index bccfcc39f..aeba6390a 100644 --- a/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js +++ b/src/modules/RA/DataLayer/components/tabs/StyleTab/Style/WizardFillExtrusion.js @@ -63,6 +63,7 @@ const WizardFillExtrusion = ({ path, fields, getValuesOfProperty }) => { path={`${path}.style.fill_extrusion_height`} fields={fields} getValuesOfProperty={getValuesOfProperty} + canGenerateLegend={false} /> @@ -88,6 +89,7 @@ const WizardFillExtrusion = ({ path, fields, getValuesOfProperty }) => { path={`${path}.style.fill_extrusion_base`} fields={fields} getValuesOfProperty={getValuesOfProperty} + canGenerateLegend={false} />