@maptiler/sdk 1.0.9 → 1.0.11
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/.github/workflows/npm-publish.yml +0 -1
- package/CHANGELOG.md +14 -0
- package/demos/maptiler-sdk.umd.js +471 -32
- package/dist/maptiler-sdk.d.ts +89 -38
- package/dist/maptiler-sdk.min.mjs +1 -1
- package/dist/maptiler-sdk.mjs +456 -19
- package/dist/maptiler-sdk.mjs.map +1 -1
- package/dist/maptiler-sdk.umd.js +471 -32
- package/dist/maptiler-sdk.umd.js.map +1 -1
- package/dist/maptiler-sdk.umd.min.js +47 -47
- package/package.json +24 -26
- package/readme.md +108 -0
- package/src/Map.ts +291 -40
- package/src/index.ts +4 -26
- package/demos/embedded-config.html +0 -66
- package/demos/two-maps.html +0 -71
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## [v1.0.11](https://github.com/maptiler/maptiler-sdk-js/releases/tag/v1.0.11)
|
|
3
|
+
- DOC update for `Map`'s `option.maptilerLogo` that was a bit unclear
|
|
4
|
+
- FIX now exporting `MaptilerNavigationControl`
|
|
5
|
+
|
|
6
|
+
## [v1.0.10](https://github.com/maptiler/maptiler-sdk-js/releases/tag/v1.0.10)
|
|
7
|
+
- ADD terrain growing animation on enabling/disabling
|
|
8
|
+
- ADD `Map` custom event `loadWithTerrain`
|
|
9
|
+
- ADD `Map` lifecycle methods `.onLoadAsync()` and `.onLoadWithTerrainAsync()`
|
|
10
|
+
- DOC readme section was added about the event an methods above
|
|
11
|
+
- VER updated from `maplibre-gl@3.0.0-pre.3` to `maplibre-gl@3.0.0-pre.4`
|
|
12
|
+
- VER updated from `typedoc@0.23.21` to `typedoc@0.24.4`, which changes slightly the look of the reference documentation.
|
|
13
|
+
- VER updated from `typescript@4.8.4` to `typescript@5.0.4`
|
|
14
|
+
- VER updated from `rollup@2.79.0` to `rollup@3.20.6` as well as all the Rollup plugins
|
|
15
|
+
|
|
2
16
|
## [v1.0.9](https://github.com/maptiler/maptiler-sdk-js/releases/tag/v1.0.9)
|
|
3
17
|
- FIX: if the geolocate option is missing from `Map` constructor, then it's considered `false`
|
|
4
18
|
|