map-gl-offline 0.1.0-alpha.7 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +3177 -269
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3178 -268
- package/dist/index.js.map +1 -1
- package/dist/style.css +79 -0
- package/dist/ui/components/shared/LanguageSelector.d.ts +22 -0
- package/dist/ui/managers/PanelManager.d.ts +2 -0
- package/dist/ui/translations/ar.d.ts +182 -0
- package/dist/ui/translations/en.d.ts +181 -0
- package/dist/ui/translations/index.d.ts +61 -0
- package/dist/utils/icons.d.ts +1 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
A comprehensive **TypeScript** library for **MapLibre GL JS** that enables complete offline map functionality with vector/raster tiles, styles, fonts, sprites, and glyphs stored in IndexedDB. Features include advanced analytics, import/export capabilities, intelligent cleanup, and a modern glassmorphic UI control.
|
|
12
12
|
|
|
13
|
+
## 🎬 Demo
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
|
|
17
|
+
*Download regions, load offline styles, and navigate maps without an internet connection.*
|
|
18
|
+
|
|
13
19
|
## ✨ Features
|
|
14
20
|
|
|
15
21
|
### 🎯 Core Offline Capabilities
|
package/dist/index.d.ts
CHANGED
|
@@ -15,3 +15,5 @@ export * from './types';
|
|
|
15
15
|
export * from './utils';
|
|
16
16
|
export { OfflineMapManager as default } from './managers/offlineMapManager';
|
|
17
17
|
export { OfflineManagerControl } from './ui/offlineManagerControl';
|
|
18
|
+
export { i18n, t } from './ui/translations';
|
|
19
|
+
export type { SupportedLanguage, TranslationKey } from './ui/translations';
|