Skip to content

Commit

Permalink
labels are backwards
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Nov 1, 2023
1 parent 9f3ae5f commit 8e8fd4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ permalink: /
// create legend: from https://docs.mapbox.com/help/tutorials/choropleth-studio-gl-pt-2/
const legend = document.getElementById('legend');
const colors = ['#1c2e71', '#31dce4']
const layers = ['Institutions','Clusters'];
const layers = ['Clusters', 'Institutions'];
layers.forEach((layer, i) => {
const color = colors[i];
const item = document.createElement('div');
Expand Down

0 comments on commit 8e8fd4e

Please sign in to comment.