From 8604ea1db1a6d6b8e21b554dbf559b99ea6a8c11 Mon Sep 17 00:00:00 2001 From: funbunch Date: Sat, 3 Feb 2024 17:15:51 -0800 Subject: [PATCH] Change style to "light". And boundary color to light blue. --- components/Map/Map.jsx | 2 +- components/Map/constants.js | 2 +- components/Map/layers/BoundaryLayer.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Map/Map.jsx b/components/Map/Map.jsx index 9743e2477..410ed66d6 100644 --- a/components/Map/Map.jsx +++ b/components/Map/Map.jsx @@ -117,7 +117,7 @@ class Map extends React.Component { filteredRequestCounts: {}, hoveredRegionName: null, colorScheme: 'prism', - mapStyle: 'streets', + mapStyle: 'light', canReset: true, selectedRequestId: null, selectedNc: null, diff --git a/components/Map/constants.js b/components/Map/constants.js index 918b3759b..ebd269f1f 100644 --- a/components/Map/constants.js +++ b/components/Map/constants.js @@ -16,7 +16,7 @@ export const GEO_FILTER_TYPES = { export const MAP_STYLES = { dark: 'mapbox://styles/mapbox/dark-v10', - light: 'mapbox://styles/mapbox/light-v10', + light: 'mapbox://styles/mapbox/light-v11', streets: 'mapbox://styles/mapbox/streets-v11', satellite: 'mapbox://styles/mapbox/satellite-streets-v11', }; diff --git a/components/Map/layers/BoundaryLayer.js b/components/Map/layers/BoundaryLayer.js index 8185e1b77..d4fd618d9 100644 --- a/components/Map/layers/BoundaryLayer.js +++ b/components/Map/layers/BoundaryLayer.js @@ -20,7 +20,7 @@ const FIT_BOUNDS_PADDING = { }; function getBoundaryColor(boundaryStyle) { - return boundaryStyle === 'light' ? '#FFFFFF' : '#27272b'; + return boundaryStyle === 'light' ? '#FFFFFF' : '#62ADFC'; } function getMaskFillOpacity(boundaryStyle) {