diff --git a/app/map_styles/polygon.xml b/app/map_styles/polygon.xml index 7d0e8552..a2f88975 100644 --- a/app/map_styles/polygon.xml +++ b/app/map_styles/polygon.xml @@ -226,24 +226,28 @@ - [likes] >= 70 and [likes] < 100 + [likes] >= 50 and [likes] < 100 - [likes] >= 40 and [likes] < 70 + [likes] >= 20 and [likes] < 50 - [likes] >= 15 and [likes] < 40 + [likes] >= 10 and [likes] < 20 - [likes] >= 5 and [likes] < 15 + [likes] >= 3 and [likes] < 10 - [likes] < 5 + [likes] = 2 + + [likes] = 1 + + diff --git a/app/src/frontend/map/legend.tsx b/app/src/frontend/map/legend.tsx index 71150ab4..b1e8bddb 100644 --- a/app/src/frontend/map/legend.tsx +++ b/app/src/frontend/map/legend.tsx @@ -102,12 +102,13 @@ const LEGEND_CONFIG = { like: { title: 'Like Me', elements: [ - { color: '#bd0026', text: '👍👍👍 ≥100' }, - { color: '#e31a1c', text: '👍👍 70–99' }, - { color: '#fc4e2a', text: '👍 40-69' }, - { color: '#fd8d3c', text: '👍 15-39' }, - { color: '#feb24c', text: '👍 5-14' }, - { color: '#fed976', text: '👍 1-4' }, + { color: '#bd0026', text: '👍👍👍👍 100+' }, + { color: '#e31a1c', text: '👍👍👍 50–99' }, + { color: '#fc4e2a', text: '👍👍 20–49' }, + { color: '#fd8d3c', text: '👍👍 10–19' }, + { color: '#feb24c', text: '👍 3–9' }, + { color: '#fed976', text: '👍 2' }, + { color: '#ffe8a9', text: '👍 1'} ] } };