@baidumap/mapv-three 1.3.3 → 1.4.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.
Files changed (273) hide show
  1. package/README.md +3 -3
  2. package/dist/assets/textures/cloud/stbn.bin +0 -0
  3. package/dist/assets/textures/weather/thunder.jpg +0 -0
  4. package/dist/assets/wasm/lanelet.js +3296 -165
  5. package/dist/assets/wasm/lanelet.wasm +0 -0
  6. package/dist/assets/workers/{BaiduVectorParser.worker-d550338e.js → BaiduVectorParser.worker-486240e8.js} +977 -930
  7. package/dist/assets/workers/{CesiumTerrainParser.worker-20119751.js → CesiumTerrainParser.worker-ba35b937.js} +1032 -954
  8. package/dist/assets/workers/{MVTParser.worker-7dc8b0e4.js → MVTParser.worker-bb80e3b4.js} +755 -699
  9. package/dist/devtool/panel.js +108 -29
  10. package/dist/mapvthree.module.js +45540 -46298
  11. package/dist/mapvthree.umd.js +13 -7
  12. package/dist/types/Internal.d.ts +2 -0
  13. package/dist/types/adapters/bmap/Icon.d.ts +18 -0
  14. package/dist/types/adapters/bmap/InfoWindow.d.ts +124 -0
  15. package/dist/types/adapters/bmap/Label.d.ts +58 -0
  16. package/dist/types/adapters/bmap/Map.d.ts +124 -0
  17. package/dist/types/adapters/bmap/Marker.d.ts +28 -0
  18. package/dist/types/adapters/bmap/Overlay.d.ts +18 -0
  19. package/dist/types/adapters/bmap/Pixel.d.ts +1 -0
  20. package/dist/types/adapters/bmap/Point.d.ts +8 -0
  21. package/dist/types/adapters/bmap/Size.d.ts +8 -0
  22. package/dist/types/adapters/bmap/index.d.ts +8 -0
  23. package/dist/types/adapters/index.d.ts +1 -0
  24. package/dist/types/index.d.ts +3 -2
  25. package/dist/types/index.open.d.ts +5 -0
  26. package/dist/types/threejs/controls/PointerLockControls.d.ts +2 -0
  27. package/dist/types/threejs/geometries/text/ScreenTextGeometry.d.ts +15 -0
  28. package/dist/types/threejs/loaders/utilities/BatchTableHierarchyExtension.d.ts +4 -4
  29. package/dist/types/threejs/loaders/utilities/FeatureTable.d.ts +1 -1
  30. package/dist/types/threejs/materials/effects/LightningBillboardMaterial.d.ts +3 -0
  31. package/dist/types/threejs/materials/effects/LightningMaterial.d.ts +9 -0
  32. package/dist/types/threejs/materials/extend/ExtendMeshStandardMaterial.d.ts +1 -0
  33. package/dist/types/threejs/materials/natural/DynamicSkyMaterial.d.ts +1 -0
  34. package/dist/types/threejs/materials/natural/StaticSkyMaterial.d.ts +1 -0
  35. package/dist/types/threejs/materials/natural/VerticalGradientSkyMaterial.d.ts +1 -0
  36. package/dist/types/threejs/materials/polygon/PolygonMaterial.d.ts +1 -0
  37. package/dist/types/threejs/materials/text/ScreenTextMaterial.d.ts +25 -0
  38. package/dist/types/threejs/objects/GeoInstancedMesh.d.ts +1 -0
  39. package/dist/types/threejs/objects/line/FatLineInternal.d.ts +4 -0
  40. package/dist/types/threejs/objects/line/Polyline.d.ts +1 -1
  41. package/dist/types/threejs/objects/point/Icon.d.ts +1 -0
  42. package/dist/types/threejs/objects/point/Label.d.ts +15 -2
  43. package/dist/types/threejs/objects/point/label/GeometryBufferBuilder.d.ts +3 -0
  44. package/dist/types/threejs/objects/point/label/TextBoxCalculator.d.ts +5 -3
  45. package/dist/types/threejs/objects/text/ScreenText.d.ts +273 -0
  46. package/dist/types/threejs/objects/text/font-atlas-manager.d.ts +10 -2
  47. package/dist/types/threejs/objects/text/utils.d.ts +1 -1
  48. package/dist/types/threemap/3dtiles/HDMap3DTiles.d.ts +26 -0
  49. package/dist/types/threemap/3dtiles/materials/Default3DTilesMaterialManager.d.ts +51 -3
  50. package/dist/types/threemap/Engine.d.ts +23 -4
  51. package/dist/types/threemap/animations/ObjectTracker.d.ts +73 -44
  52. package/dist/types/threemap/animations/PathTracker.d.ts +92 -24
  53. package/dist/types/threemap/animations/RotateTracker.d.ts +115 -21
  54. package/dist/types/threemap/animations/TrackerAbstract.d.ts +15 -11
  55. package/dist/types/threemap/controls/PointerLockControls.d.ts +8 -2
  56. package/dist/types/threemap/controls/controller/ColumbusController.d.ts +10 -0
  57. package/dist/types/threemap/controls/controller/Scene3DController.d.ts +9 -0
  58. package/dist/types/threemap/controls/editors/Editor.d.ts +3 -0
  59. package/dist/types/threemap/engine/Clock.d.ts +156 -0
  60. package/dist/types/threemap/engine/Controller.d.ts +141 -0
  61. package/dist/types/threemap/engine/Map.d.ts +34 -4
  62. package/dist/types/threemap/engine/Rendering.d.ts +15 -0
  63. package/dist/types/threemap/engine/event/EntityProxy.d.ts +1 -0
  64. package/dist/types/threemap/engine/map/BlankMap.d.ts +1 -1
  65. package/dist/types/threemap/engine/map/BlankMap3DControl.d.ts +4 -1
  66. package/dist/types/{threejs → threemap/engine/map}/controls/DraggingMovementAggregator.d.ts +3 -0
  67. package/dist/types/{threejs → threemap/engine/map}/controls/MapControl3D.d.ts +19 -2
  68. package/dist/types/{threejs → threemap/engine/map}/controls/PointerMovementAggregator.d.ts +3 -0
  69. package/dist/types/threemap/engine/map/earth/Earth.d.ts +1 -0
  70. package/dist/types/threemap/engine/rendering/Collision.d.ts +5 -0
  71. package/dist/types/threemap/engine/rendering/Label.d.ts +15 -0
  72. package/dist/types/threemap/engine/rendering/MainNew.d.ts +1 -1
  73. package/dist/types/threemap/engine/rendering/postprocessing/OpaquePostprocessings.d.ts +1 -1
  74. package/dist/types/threemap/engine/rendering/postprocessing/SkyAtmospherePass.d.ts +1 -0
  75. package/dist/types/threemap/engine/rendering/scene/DirectSceneRendering.d.ts +5 -0
  76. package/dist/types/threemap/mapView/geo/terrainData/QuantizedMeshTerrainData.d.ts +1 -1
  77. package/dist/types/threemap/mapView/grid/BaiduVectorOfflineGrid.d.ts +5 -0
  78. package/dist/types/threemap/mapView/map/MapView.d.ts +3 -0
  79. package/dist/types/threemap/mapView/parser/baidulane/ElementParser.d.ts +86 -0
  80. package/dist/types/threemap/mapView/parser/baidulane/StyleParser.d.ts +28 -0
  81. package/dist/types/threemap/mapView/parser/baidulane/constants/index.d.ts +25 -0
  82. package/dist/types/threemap/mapView/parser/baidulane/constants/types.d.ts +47 -0
  83. package/dist/types/threemap/mapView/parser/baidulane/core/GeometryBuilder.d.ts +40 -0
  84. package/dist/types/threemap/mapView/parser/baidulane/core/LayerManager.d.ts +41 -0
  85. package/dist/types/threemap/mapView/parser/baidulane/core/MaterialFactory.d.ts +71 -0
  86. package/dist/types/threemap/mapView/parser/baidulane/core/StyleManager.d.ts +50 -0
  87. package/dist/types/threemap/mapView/parser/baidulane/core/TextureManager.d.ts +65 -0
  88. package/dist/types/threemap/mapView/parser/baidulane/core/wasmManager.d.ts +18 -0
  89. package/dist/types/threemap/mapView/parser/baidulane/generators/Base.d.ts +46 -0
  90. package/dist/types/threemap/mapView/parser/baidulane/generators/Building3d.d.ts +15 -0
  91. package/dist/types/threemap/mapView/parser/baidulane/generators/FlatSymbol.d.ts +15 -0
  92. package/dist/types/threemap/mapView/parser/baidulane/generators/LabelLine.d.ts +36 -0
  93. package/dist/types/threemap/mapView/parser/baidulane/generators/Line.d.ts +15 -0
  94. package/dist/types/threemap/mapView/parser/baidulane/generators/Line3d.d.ts +15 -0
  95. package/dist/types/threemap/mapView/parser/baidulane/generators/Line3dTexture.d.ts +3 -0
  96. package/dist/types/threemap/mapView/parser/baidulane/generators/LineDash.d.ts +7 -0
  97. package/dist/types/threemap/mapView/parser/baidulane/generators/LineTexture.d.ts +7 -0
  98. package/dist/types/threemap/mapView/parser/baidulane/generators/Poi.d.ts +26 -0
  99. package/dist/types/threemap/mapView/parser/baidulane/generators/Polygon.d.ts +15 -0
  100. package/dist/types/threemap/mapView/parser/baidulane/generators/Polygon3d.d.ts +40 -0
  101. package/dist/types/threemap/mapView/parser/baidulane/generators/PolygonExtrude.d.ts +15 -0
  102. package/dist/types/threemap/mapView/parser/baidulane/generators/PolygonExtrudeTexture.d.ts +18 -0
  103. package/dist/types/threemap/mapView/parser/baidulane/generators/PolygonOpacity.d.ts +7 -0
  104. package/dist/types/threemap/mapView/parser/baidulane/generators/SimplePoint.d.ts +39 -0
  105. package/dist/types/threemap/mapView/parser/baidulane/processors/Background.d.ts +11 -0
  106. package/dist/types/threemap/mapView/parser/baidulane/processors/Base.d.ts +27 -0
  107. package/dist/types/threemap/mapView/parser/baidulane/processors/BridgePier.d.ts +20 -0
  108. package/dist/types/threemap/mapView/parser/baidulane/processors/DebugLine.d.ts +16 -0
  109. package/dist/types/threemap/mapView/parser/baidulane/processors/DebugPoint.d.ts +5 -0
  110. package/dist/types/threemap/mapView/parser/baidulane/processors/DebugPolygon.d.ts +20 -0
  111. package/dist/types/threemap/mapView/parser/baidulane/processors/GaoqingGradient.d.ts +16 -0
  112. package/dist/types/threemap/mapView/parser/baidulane/processors/GaoqingGuide.d.ts +11 -0
  113. package/dist/types/threemap/mapView/parser/baidulane/processors/GaoqingLine.d.ts +11 -0
  114. package/dist/types/threemap/mapView/parser/baidulane/processors/GaoqingPoly.d.ts +15 -0
  115. package/dist/types/threemap/mapView/parser/baidulane/processors/GaoqingRoad.d.ts +13 -0
  116. package/dist/types/threemap/mapView/parser/baidulane/processors/HRegion.d.ts +11 -0
  117. package/dist/types/threemap/mapView/parser/baidulane/processors/LineName.d.ts +48 -0
  118. package/dist/types/threemap/mapView/parser/baidulane/processors/Link.d.ts +10 -0
  119. package/dist/types/threemap/mapView/parser/baidulane/processors/Poi.d.ts +7 -0
  120. package/dist/types/threemap/mapView/parser/baidulane/processors/Poly.d.ts +11 -0
  121. package/dist/types/threemap/mapView/parser/baidulane/processors/Texture.d.ts +10 -0
  122. package/dist/types/threemap/mapView/parser/baidulane/utils/color.d.ts +13 -0
  123. package/dist/types/threemap/mapView/parser/baidulane/utils/coordinate.d.ts +18 -0
  124. package/dist/types/threemap/mapView/parser/baidulane/utils/geometry.d.ts +3 -0
  125. package/dist/types/threemap/mapView/parser/baidulane/utils/icon.d.ts +8 -0
  126. package/dist/types/threemap/mapView/parser/baidulane/utils/merge.d.ts +7 -0
  127. package/dist/types/threemap/mapView/parser/baidulane/utils/tracer.d.ts +7 -0
  128. package/dist/types/{util/mapbox.d.ts → threemap/mapView/parser/mapbox/util.d.ts} +1 -1
  129. package/dist/types/threemap/mapView/surface/GroundSceneRenderer.d.ts +7 -2
  130. package/dist/types/threemap/mapView/surface/MapSurface.d.ts +2 -0
  131. package/dist/types/threemap/mapView/surface/strategy/FastTileLoaderStrategy.d.ts +16 -0
  132. package/dist/types/threemap/mapView/tileProvider/terrain/CesiumTerrainTileProvider.d.ts +3 -0
  133. package/dist/types/threemap/mapView/tileProvider/vector/BaiduLaneVectorTileProvider.d.ts +7 -0
  134. package/dist/types/threemap/mapView/tileProvider/vector/BaiduVectorTileProvider.d.ts +3 -0
  135. package/dist/types/threemap/mapView/tileProvider/vector/MapboxVectorTileProvider.d.ts +6 -10
  136. package/dist/types/threemap/mapView/utils/createGroundTileMesh.d.ts +2 -1
  137. package/dist/types/threemap/mapView/utils/projectVertices.d.ts +1 -1
  138. package/dist/types/threemap/materials/BatchBuildingMaterial.d.ts +9 -11
  139. package/dist/types/threemap/materials/RoadMarkingMaterial.d.ts +2 -11
  140. package/dist/types/threemap/materials/TerrainClassificationMaterial.d.ts +9 -7
  141. package/dist/types/threemap/natural/DynamicSky.d.ts +68 -22
  142. package/dist/types/threemap/natural/DynamicWeather.d.ts +17 -105
  143. package/dist/types/threemap/natural/EmptySky.d.ts +48 -62
  144. package/dist/types/threemap/natural/PhysicalSky.d.ts +220 -0
  145. package/dist/types/threemap/natural/Rain.d.ts +5 -2
  146. package/dist/types/threemap/natural/Snow.d.ts +5 -2
  147. package/dist/types/threemap/natural/StaticSky.d.ts +1 -0
  148. package/dist/types/threemap/natural/Thunderstorm.d.ts +46 -0
  149. package/dist/types/threemap/natural/clouds/CascadedShadowMaps.d.ts +31 -0
  150. package/dist/types/threemap/natural/clouds/CloudLayer.d.ts +19 -0
  151. package/dist/types/threemap/natural/clouds/CloudLayers.d.ts +13 -0
  152. package/dist/types/threemap/natural/clouds/CloudShape.d.ts +4 -0
  153. package/dist/types/threemap/natural/clouds/CloudShapeDetail.d.ts +4 -0
  154. package/dist/types/threemap/natural/clouds/CloudsEffect.d.ts +173 -0
  155. package/dist/types/threemap/natural/clouds/CloudsMaterial.d.ts +35 -0
  156. package/dist/types/threemap/natural/clouds/CloudsPass.d.ts +39 -0
  157. package/dist/types/threemap/natural/clouds/CloudsPostPass.d.ts +10 -0
  158. package/dist/types/threemap/natural/clouds/CloudsResolveMaterial.d.ts +13 -0
  159. package/dist/types/threemap/natural/clouds/DensityProfile.d.ts +10 -0
  160. package/dist/types/threemap/natural/clouds/LocalWeather.d.ts +4 -0
  161. package/dist/types/threemap/natural/clouds/PassBase.d.ts +7 -0
  162. package/dist/types/threemap/natural/clouds/Procedural3DTexture.d.ts +15 -0
  163. package/dist/types/threemap/natural/clouds/ProceduralTexture.d.ts +15 -0
  164. package/dist/types/threemap/natural/clouds/ShaderArrayPass.d.ts +3 -0
  165. package/dist/types/threemap/natural/clouds/ShadowMaterial.d.ts +14 -0
  166. package/dist/types/threemap/natural/clouds/ShadowPass.d.ts +31 -0
  167. package/dist/types/threemap/natural/clouds/ShadowResolveMaterial.d.ts +8 -0
  168. package/dist/types/threemap/natural/clouds/Turbulence.d.ts +4 -0
  169. package/dist/types/threemap/natural/clouds/bayer.d.ts +2 -0
  170. package/dist/types/threemap/natural/clouds/constants.d.ts +6 -0
  171. package/dist/types/threemap/natural/clouds/helpers/FrustumCorners.d.ts +10 -0
  172. package/dist/types/threemap/natural/clouds/helpers/setArrayRenderTargetLayers.d.ts +1 -0
  173. package/dist/types/threemap/natural/clouds/helpers/splitFrustum.d.ts +6 -0
  174. package/dist/types/threemap/natural/clouds/qualityPresets.d.ts +130 -0
  175. package/dist/types/threemap/natural/clouds/uniforms.d.ts +44 -0
  176. package/dist/types/threemap/natural/core/ArrayBufferLoader.d.ts +3 -0
  177. package/dist/types/threemap/natural/core/DataTextureLoader.d.ts +11 -0
  178. package/dist/types/threemap/natural/core/Ellipsoid.d.ts +17 -0
  179. package/dist/types/threemap/natural/core/Geodetic.d.ts +23 -0
  180. package/dist/types/threemap/natural/core/TypedArrayLoader.d.ts +5 -0
  181. package/dist/types/threemap/natural/core/capabilities.d.ts +1 -0
  182. package/dist/types/threemap/natural/core/celestialDirections.d.ts +5 -0
  183. package/dist/types/threemap/natural/core/decorators.d.ts +61 -0
  184. package/dist/types/threemap/natural/core/defineShorthand.d.ts +2 -0
  185. package/dist/types/threemap/natural/core/helpers/projectOnEllipsoidSurface.d.ts +1 -0
  186. package/dist/types/threemap/natural/core/math.d.ts +15 -0
  187. package/dist/types/threemap/natural/core/requestIdleCallback.d.ts +2 -0
  188. package/dist/types/threemap/natural/core/resolveIncludes.d.ts +1 -0
  189. package/dist/types/threemap/natural/core/shaders/index.d.ts +10 -0
  190. package/dist/types/threemap/natural/core/unrollLoops.d.ts +1 -0
  191. package/dist/types/threemap/natural/effects/DepthEffect.d.ts +15 -0
  192. package/dist/types/threemap/natural/effects/DitheringEffect.d.ts +6 -0
  193. package/dist/types/threemap/natural/effects/DownsampleThresholdMaterial.d.ts +14 -0
  194. package/dist/types/threemap/natural/effects/GeometryEffect.d.ts +11 -0
  195. package/dist/types/threemap/natural/effects/GeometryPass.d.ts +6 -0
  196. package/dist/types/threemap/natural/effects/LensFlareEffect.d.ts +31 -0
  197. package/dist/types/threemap/natural/effects/LensFlareFeaturesMaterial.d.ts +17 -0
  198. package/dist/types/threemap/natural/effects/NormalEffect.d.ts +16 -0
  199. package/dist/types/threemap/natural/effects/createHaldLookupTexture.d.ts +1 -0
  200. package/dist/types/threemap/natural/effects/index.d.ts +7 -0
  201. package/dist/types/threemap/natural/effects/setupMaterialsForGeometryPass.d.ts +1 -0
  202. package/dist/types/threemap/natural/sky/AerialPerspectiveEffect.d.ts +95 -0
  203. package/dist/types/threemap/natural/sky/AtmosphereMaterialBase.d.ts +40 -0
  204. package/dist/types/threemap/natural/sky/AtmosphereParameters.d.ts +32 -0
  205. package/dist/types/threemap/natural/sky/AtmospherePostPass.d.ts +10 -0
  206. package/dist/types/threemap/natural/sky/PrecomputedTexturesGenerator.d.ts +66 -0
  207. package/dist/types/threemap/natural/sky/SkyMaterial.d.ts +26 -0
  208. package/dist/types/threemap/natural/sky/constants.d.ts +14 -0
  209. package/dist/types/threemap/natural/sky/getAltitudeCorrectionOffset.d.ts +1 -0
  210. package/dist/types/threemap/overlay/Marker.d.ts +3 -0
  211. package/dist/types/threemap/services/autoComplete/AutoComplete.d.ts +1 -1
  212. package/dist/types/threemap/services/boundary/Boundary.d.ts +3 -3
  213. package/dist/types/threemap/services/common/baiduRequest.d.ts +1 -1
  214. package/dist/types/threemap/services/configs.d.ts +2 -2
  215. package/dist/types/threemap/services/district/DistrictLayer.d.ts +3 -3
  216. package/dist/types/threemap/services/geocoder/Geocoder.d.ts +5 -5
  217. package/dist/types/threemap/services/localSearch/LocalSearch.d.ts +5 -5
  218. package/dist/types/threemap/services/routeSearch/DrivingRoute.d.ts +2 -2
  219. package/dist/types/threemap/services/routeSearch/TransitRoute.d.ts +3 -3
  220. package/dist/types/threemap/video/VideoConfig.d.ts +2 -2
  221. package/dist/types/util/graphics/line.d.ts +2 -2
  222. package/dist/types/util/request.d.ts +1 -1
  223. package/package.json +6 -3
  224. /package/dist/types/{threejs → threemap/engine/map}/controls/MapControl.d.ts +0 -0
  225. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/color.d.ts +0 -0
  226. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/executer/background.d.ts +0 -0
  227. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/executer/fill-extrusion.d.ts +0 -0
  228. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/executer/fill.d.ts +0 -0
  229. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/executer/index.d.ts +0 -0
  230. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/executer/line.d.ts +0 -0
  231. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/executer/symbol.d.ts +0 -0
  232. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/compound_expression.d.ts +0 -0
  233. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/assertion.d.ts +0 -0
  234. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/at.d.ts +0 -0
  235. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/case.d.ts +0 -0
  236. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/coalesce.d.ts +0 -0
  237. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/coercion.d.ts +0 -0
  238. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/collator.d.ts +0 -0
  239. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/comparison.d.ts +0 -0
  240. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/format.d.ts +0 -0
  241. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/image.d.ts +0 -0
  242. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/in.d.ts +0 -0
  243. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/index.d.ts +0 -0
  244. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/index_of.d.ts +0 -0
  245. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/interpolate.d.ts +0 -0
  246. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/length.d.ts +0 -0
  247. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/let.d.ts +0 -0
  248. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/literal.d.ts +0 -0
  249. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/match.d.ts +0 -0
  250. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/number_format.d.ts +0 -0
  251. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/slice.d.ts +0 -0
  252. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/step.d.ts +0 -0
  253. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/var.d.ts +0 -0
  254. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/definitions/within.d.ts +0 -0
  255. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/evaluation_context.d.ts +0 -0
  256. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/expression.d.ts +0 -0
  257. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/index.d.ts +0 -0
  258. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/is_constant.d.ts +0 -0
  259. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/parsing_context.d.ts +0 -0
  260. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/parsing_error.d.ts +0 -0
  261. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/scope.d.ts +0 -0
  262. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/stops.d.ts +0 -0
  263. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/types/collator.d.ts +0 -0
  264. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/types/formatted.d.ts +0 -0
  265. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/types/resolved_image.d.ts +0 -0
  266. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/types.d.ts +0 -0
  267. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/expression/values.d.ts +0 -0
  268. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/feature_filter/index.d.ts +0 -0
  269. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/function/convert.d.ts +0 -0
  270. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/function/index.d.ts +0 -0
  271. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/sourceLayer.d.ts +0 -0
  272. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/sprite.d.ts +0 -0
  273. /package/dist/types/threemap/mapView/{mapbox → parser/mapbox}/style.d.ts +0 -0
Binary file