maplibre-gl-layers 0.13.0 → 0.15.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.
Files changed (40) hide show
  1. package/README.md +3 -3
  2. package/dist/SpriteLayer.d.ts +3 -27
  3. package/dist/config.d.ts +10 -2
  4. package/dist/const.d.ts +3 -3
  5. package/dist/default.d.ts +2 -2
  6. package/dist/gl/atlas.d.ts +64 -0
  7. package/dist/gl/hitTest.d.ts +54 -0
  8. package/dist/{shader.d.ts → gl/shader.d.ts} +22 -4
  9. package/dist/gl/text.d.ts +17 -0
  10. package/dist/{calculationHost.d.ts → host/calculationHost.d.ts} +26 -4
  11. package/dist/{mapLibreProjectionHost.d.ts → host/mapLibreProjectionHost.d.ts} +3 -3
  12. package/dist/{projectionHost.d.ts → host/projectionHost.d.ts} +5 -4
  13. package/dist/host/runtime.d.ts +38 -0
  14. package/dist/{wasmCalculationHost.d.ts → host/wasmCalculationHost.d.ts} +14 -14
  15. package/dist/{wasmHost.d.ts → host/wasmHost.d.ts} +14 -8
  16. package/dist/{wasmProjectionHost.d.ts → host/wasmProjectionHost.d.ts} +3 -3
  17. package/dist/index.cjs +7117 -4673
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.ts +4 -3
  20. package/dist/index.mjs +7117 -4673
  21. package/dist/index.mjs.map +1 -1
  22. package/dist/internalTypes.d.ts +109 -15
  23. package/dist/{degreeInterpolation.d.ts → interpolation/degreeInterpolation.d.ts} +19 -4
  24. package/dist/interpolation/distanceInterpolation.d.ts +46 -0
  25. package/dist/{easing.d.ts → interpolation/easing.d.ts} +9 -4
  26. package/dist/{interpolation.d.ts → interpolation/interpolation.d.ts} +5 -27
  27. package/dist/{interpolationChannels.d.ts → interpolation/interpolationChannels.d.ts} +16 -7
  28. package/dist/{rotationInterpolation.d.ts → interpolation/rotationInterpolation.d.ts} +5 -10
  29. package/dist/types.d.ts +75 -26
  30. package/dist/{image.d.ts → utils/image.d.ts} +3 -3
  31. package/dist/{looseQuadTree.d.ts → utils/looseQuadTree.d.ts} +2 -2
  32. package/dist/{math.d.ts → utils/math.d.ts} +15 -4
  33. package/dist/{utils.d.ts → utils/utils.d.ts} +3 -3
  34. package/dist/wasm/config.json.d.ts +16 -0
  35. package/dist/wasm/offloads-nosimd.wasm +0 -0
  36. package/dist/wasm/offloads-simd-mt.js +2 -0
  37. package/dist/wasm/offloads-simd-mt.wasm +0 -0
  38. package/dist/wasm/offloads-simd.wasm +0 -0
  39. package/package.json +7 -9
  40. package/dist/distanceInterpolation.d.ts +0 -33
package/dist/index.d.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  /*!
2
2
  * name: maplibre-gl-layers
3
- * version: 0.13.0
3
+ * version: 0.15.0
4
4
  * description: MapLibre's layer extension library enabling the display, movement, and modification of large numbers of dynamic sprite images
5
5
  * author: Kouji Matsui (@kekyo@mi.kekyo.net)
6
6
  * license: MIT
7
7
  * repository.url: https://github.com/kekyo/maplibre-gl-layers.git
8
- * git.commit.hash: 4934aa7f4fed93594ece419184b32b5b972bbb88
8
+ * git.commit.hash: d850b7e9c713f54f0630248dc4ea370721b6965b
9
9
  */
10
10
 
11
11
  export * from './types';
12
12
  export * from './default';
13
- export * from './image';
13
+ export * from './utils/image';
14
+ export { initializeRuntimeHost, releaseRuntimeHost, detectMultiThreadedModuleAvailability, type MultiThreadedModuleAvailability, } from './host/runtime';
14
15
  export * from './SpriteLayer';