From 15f7f281d38f2c3ddea93989b7a6c4ef22ae1ee5 Mon Sep 17 00:00:00 2001 From: muerwre Date: Mon, 25 Feb 2019 18:47:15 +0700 Subject: [PATCH] added darq --- src/constants/providers.ts | 2 +- src/styles/map.less | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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); } }