From c8218d352fcc4cc3386c145ccc6a93bd08880a5f Mon Sep 17 00:00:00 2001 From: Vim USDS Date: Tue, 9 Aug 2022 02:03:30 -0700 Subject: [PATCH] Add initial AK points - corrects filter expression - adds radius and color to constants --- .../components/MapTribalLayer/MapTribalLayer.tsx | 13 +++++-------- client/src/data/constants.tsx | 3 ++- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/client/src/components/MapTribalLayer/MapTribalLayer.tsx b/client/src/components/MapTribalLayer/MapTribalLayer.tsx index c6f7d744..c8fb932a 100644 --- a/client/src/components/MapTribalLayer/MapTribalLayer.tsx +++ b/client/src/components/MapTribalLayer/MapTribalLayer.tsx @@ -81,20 +81,17 @@ const MapTribalLayer = ({ /> {/* Alaska layer */} - {/* // Todo: Figure out why this isn't working */} ); diff --git a/client/src/data/constants.tsx b/client/src/data/constants.tsx index 572ad9c9..024434e7 100644 --- a/client/src/data/constants.tsx +++ b/client/src/data/constants.tsx @@ -239,7 +239,8 @@ export const PRIORITIZED_FEATURE_FILL_COLOR = '#768FB3'; export const TRIBAL_BORDER_COLOR = '##4EA5CF'; export const SELECTED_TRIBAL_BORDER_COLOR = '#1A4480'; export const TRIBAL_FILL_COLOR = '#768FB3'; - +export const TRIBAL_ALASKA_CIRCLE_FILL_COLOR = '#768FB3'; +export const TRIBAL_ALASKA_CIRCLE_RADIUS = 10; // Widths export const FEATURE_BORDER_WIDTH = 0.8;