From d569c62bf7f9af978ed253052107098b2f0b8225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e?= <tpoussard@neogeo.fr> Date: Fri, 3 Jun 2022 11:33:25 +0200 Subject: [PATCH] prevent undefined opacities in colors_style --- src/services/map-service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/map-service.js b/src/services/map-service.js index be9485cd..f88bfe87 100644 --- a/src/services/map-service.js +++ b/src/services/map-service.js @@ -343,7 +343,7 @@ const mapService = { const colorsStyle = featureType.colors_style; if (featureType && colorsStyle && colorsStyle.custom_field_name) { const currentValue = properties[colorsStyle.custom_field_name]; - if (currentValue) { + if (currentValue && colorsStyle.opacities) { const colorStyle = colorsStyle.opacities[currentValue]; return parseFloat(colorStyle ? colorStyle : featureType.opacity); } -- GitLab