aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/Map.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/map/Map.js')
-rw-r--r--modern/src/map/Map.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/modern/src/map/Map.js b/modern/src/map/Map.js
index 9e31fa1..1fa4db5 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%';