diff options
Diffstat (limited to 'modern/src/map')
-rw-r--r-- | modern/src/map/Map.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modern/src/map/Map.js b/modern/src/map/Map.js index 9e31fa15..1fa4db5d 100644 --- a/modern/src/map/Map.js +++ b/modern/src/map/Map.js @@ -10,10 +10,13 @@ import { prepareIcon, loadImage } from './mapUtil'; import { styleCarto, styleMapbox, styleMapTiler, styleOsm, } from './mapStyles'; -import t from '../LocalizationProvider'; import { useAttributePreference } from '../common/preferences'; import palette from '../theme/palette'; +// TODO fix localization +import en from '../../../web/l10n/en.json'; +const t = (key) => en[key]; + const element = document.createElement('div'); element.style.width = '100%'; element.style.height = '100%'; |