From 7cbc4a1333f2d77d45c0193286c1b2b732381480 Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 1 Feb 2025 13:19:06 -0500 Subject: [PATCH] Coloring from thread --- test_data/volvox/umd_plugin.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test_data/volvox/umd_plugin.js b/test_data/volvox/umd_plugin.js index f90d658615..ede67a094f 100644 --- a/test_data/volvox/umd_plugin.js +++ b/test_data/volvox/umd_plugin.js @@ -135,7 +135,12 @@ configure(pluginManager) { pluginManager.jexl.addFunction('repeatColor', feature => { let type = feature.get('repeatClass') - return { R: 'red', RC: 'green', F: 'blue', C: 'orange' }[type] + return { + R: '#00A000', + RC: '#FF7F00', + F: '#8b0000', + C: '#0000FF', + }[type] }) } }