diff --git a/src/constants/providers.ts b/src/constants/providers.ts index 203ef0b..2f44276 100644 --- a/src/constants/providers.ts +++ b/src/constants/providers.ts @@ -66,7 +66,7 @@ const TILEMAPS: ITileMaps = { }, }; -const ENABLED: Array = ['BLANK', 'DEFAULT', 'DGIS', 'HOT']; +const ENABLED: Array = ['BLANK', 'DEFAULT', 'DGIS', 'HOT', 'DARQ']; export const DEFAULT_PROVIDER: keyof ITileMaps = ENABLED[0]; export const PROVIDERS: Partial = ENABLED.reduce((obj, provider) => ({ diff --git a/src/styles/map.less b/src/styles/map.less index 2f4651c..ea2f153 100644 --- a/src/styles/map.less +++ b/src/styles/map.less @@ -92,11 +92,11 @@ } .touch-hinter-poly { - stroke: rgba(255, 50, 0, 0); + stroke: rgba(255, 50, 0, 0.1); cursor: grab; @media (max-width: @mobile_breakpoint) { - stroke: rgba(255, 50, 0, 0.1); + stroke: rgba(255, 50, 0, 0.2); } }