@maplibre/maplibre-gl-native 6.2.0 → 6.3.0-pre.1
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 +4 -4
- package/index.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
Binaries are available and downloaded during install for the following platforms:
|
|
9
9
|
|
|
10
10
|
- Operating systems:
|
|
11
|
-
- Ubuntu
|
|
12
|
-
- macOS
|
|
13
|
-
- Windows (amd64)
|
|
14
|
-
- Node.js
|
|
11
|
+
- Ubuntu 24.04 (amd64/arm64)
|
|
12
|
+
- macOS (amd64/arm64)
|
|
13
|
+
- Windows (amd64/arm64)
|
|
14
|
+
- Node.js 20, 22, 24
|
|
15
15
|
|
|
16
16
|
Run:
|
|
17
17
|
|
package/index.d.ts
CHANGED
|
@@ -156,7 +156,7 @@ declare module '@maplibre/maplibre-gl-native' {
|
|
|
156
156
|
/**
|
|
157
157
|
* Add image to map's style
|
|
158
158
|
*/
|
|
159
|
-
addImage: (imageId: string, image: any) => void;
|
|
159
|
+
addImage: (imageId: string, image: any, options: any) => void;
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
162
|
* Remove image from map's style
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maplibre/maplibre-gl-native",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0-pre.1",
|
|
4
4
|
"description": "Renders map tiles with MapLibre Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"maplibre",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "BSD-2-Clause",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@
|
|
24
|
+
"@acalcutt/node-pre-gyp": "2.0.1",
|
|
25
25
|
"@acalcutt/node-pre-gyp-github": "2.0.1",
|
|
26
26
|
"minimatch": "^9.0.4",
|
|
27
27
|
"npm-run-all": "^4.1.5"
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"xcode": "^3.0.1"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
58
|
+
"node": ">=20"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"install": "node-pre-gyp install --fallback-to-build=false",
|