leiting-bim 2.1.36 → 2.1.39

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 (460) hide show
  1. package/leiting-bim.es.js +1 -1
  2. package/leiting-bim.umd.js +11 -11
  3. package/leitingbim.css +1 -1
  4. package/package.json +1 -1
  5. package/plugins/.gitmodules +4 -0
  6. package/plugins/README.md +2 -0
  7. package/plugins/build.cjs +63 -0
  8. package/plugins/cesium-core/dist/cesium-core.mjs +6217 -0
  9. package/plugins/cesium-core/dist/cesium-core.umd.js +76 -0
  10. package/plugins/cesium-core/dist/components/BufferedHierarchicalAggregator.d.ts +73 -0
  11. package/plugins/cesium-core/dist/components/HtmlOverlayLabelPool.d.ts +152 -0
  12. package/plugins/cesium-core/dist/components/MarkerEvent.d.ts +38 -0
  13. package/plugins/cesium-core/dist/components/Material/MaterialManager.d.ts +49 -0
  14. package/plugins/cesium-core/dist/components/Material/help/PolylineFlowMaterialProperty.d.ts +10 -0
  15. package/plugins/cesium-core/dist/components/Material/help/dynamicImgMaterial.d.ts +16 -0
  16. package/plugins/cesium-core/dist/components/Material/index.d.ts +3 -0
  17. package/plugins/cesium-core/dist/components/TooltipManager.d.ts +11 -0
  18. package/plugins/cesium-core/dist/components/draw/DrawTool.d.ts +10 -0
  19. package/plugins/cesium-core/dist/components/draw/handlers/CircleDrawer.d.ts +16 -0
  20. package/plugins/cesium-core/dist/components/draw/handlers/LineDrawer.d.ts +14 -0
  21. package/plugins/cesium-core/dist/components/draw/handlers/PointDrawer.d.ts +12 -0
  22. package/plugins/cesium-core/dist/components/draw/handlers/PolygonDrawer.d.ts +14 -0
  23. package/plugins/cesium-core/dist/components/draw/handlers/RectangleDrawer.d.ts +13 -0
  24. package/plugins/cesium-core/dist/components/draw/types.d.ts +29 -0
  25. package/plugins/cesium-core/dist/components/entity/EntityLayer.d.ts +65 -0
  26. package/plugins/cesium-core/dist/components/gltf/GLTFManage.d.ts +141 -0
  27. package/plugins/cesium-core/dist/components/gltf/index.d.ts +1 -0
  28. package/plugins/cesium-core/dist/components/measurement/MeasurementTool.d.ts +34 -0
  29. package/plugins/cesium-core/dist/components/measurement/handlers/AreaMeasure.d.ts +28 -0
  30. package/plugins/cesium-core/dist/components/measurement/handlers/CircleMeasure.d.ts +22 -0
  31. package/plugins/cesium-core/dist/components/measurement/handlers/CoordinateMeasure.d.ts +16 -0
  32. package/plugins/cesium-core/dist/components/measurement/handlers/HorizontalMeasure.d.ts +27 -0
  33. package/plugins/cesium-core/dist/components/measurement/handlers/PolylineDistanceMeasure.d.ts +25 -0
  34. package/plugins/cesium-core/dist/components/measurement/handlers/RectangleMeasure.d.ts +30 -0
  35. package/plugins/cesium-core/dist/components/measurement/handlers/RegularPolygonMeasure.d.ts +28 -0
  36. package/plugins/cesium-core/dist/components/measurement/handlers/SpaceMeasure.d.ts +21 -0
  37. package/plugins/cesium-core/dist/components/measurement/handlers/TerrainHeightMeasure.d.ts +18 -0
  38. package/plugins/cesium-core/dist/components/measurement/handlers/TriangleMeasure.d.ts +30 -0
  39. package/plugins/cesium-core/dist/components/measurement/handlers/VerticalMeasure.d.ts +23 -0
  40. package/plugins/cesium-core/dist/components/measurement/index.d.ts +13 -0
  41. package/plugins/cesium-core/dist/components/measurement/types.d.ts +42 -0
  42. package/plugins/cesium-core/dist/components/primitive/PrimitiveManager.d.ts +50 -0
  43. package/plugins/cesium-core/dist/components/roaming/CameraRoamTool.d.ts +27 -0
  44. package/plugins/cesium-core/dist/components/roaming/PathRoamTool.d.ts +23 -0
  45. package/plugins/cesium-core/dist/components/roaming/index.d.ts +3 -0
  46. package/plugins/cesium-core/dist/components/roaming/types.d.ts +66 -0
  47. package/plugins/cesium-core/dist/components/utils/convertGeoJsonToEntityData.d.ts +1 -0
  48. package/plugins/cesium-core/dist/components/utils/uuid.d.ts +1 -0
  49. package/plugins/cesium-core/dist/index.d.ts +12 -0
  50. package/plugins/cesium-core/package.json +27 -0
  51. package/plugins/cesium-core/pnpm-lock.yaml +872 -0
  52. package/plugins/cesium-core/src/components/BufferedHierarchicalAggregator.ts +546 -0
  53. package/plugins/cesium-core/src/components/HtmlOverlayLabelPool.ts +489 -0
  54. package/plugins/cesium-core/src/components/MarkerEvent.ts +92 -0
  55. package/plugins/cesium-core/src/components/Material/MaterialManager.ts +129 -0
  56. package/plugins/cesium-core/src/components/Material/help/PolylineFlowMaterialProperty.ts +116 -0
  57. package/plugins/cesium-core/src/components/Material/help/dynamicImgMaterial.ts +236 -0
  58. package/plugins/cesium-core/src/components/Material/index.ts +3 -0
  59. package/plugins/cesium-core/src/components/TooltipManager.ts +52 -0
  60. package/plugins/cesium-core/src/components/draw/DrawTool.ts +55 -0
  61. package/plugins/cesium-core/src/components/draw/handlers/CircleDrawer.ts +159 -0
  62. package/plugins/cesium-core/src/components/draw/handlers/LineDrawer.ts +113 -0
  63. package/plugins/cesium-core/src/components/draw/handlers/PointDrawer.ts +70 -0
  64. package/plugins/cesium-core/src/components/draw/handlers/PolygonDrawer.ts +112 -0
  65. package/plugins/cesium-core/src/components/draw/handlers/RectangleDrawer.ts +115 -0
  66. package/plugins/cesium-core/src/components/draw/types.ts +28 -0
  67. package/plugins/cesium-core/src/components/entity/EntityLayer.ts +453 -0
  68. package/plugins/cesium-core/src/components/gltf/GLTFManage.ts +799 -0
  69. package/plugins/cesium-core/src/components/gltf/index.ts +1 -0
  70. package/plugins/cesium-core/src/components/measurement/MeasurementTool.ts +416 -0
  71. package/plugins/cesium-core/src/components/measurement/handlers/AreaMeasure.ts +552 -0
  72. package/plugins/cesium-core/src/components/measurement/handlers/CircleMeasure.ts +289 -0
  73. package/plugins/cesium-core/src/components/measurement/handlers/CoordinateMeasure.ts +139 -0
  74. package/plugins/cesium-core/src/components/measurement/handlers/HorizontalMeasure.ts +427 -0
  75. package/plugins/cesium-core/src/components/measurement/handlers/PolylineDistanceMeasure.ts +356 -0
  76. package/plugins/cesium-core/src/components/measurement/handlers/RectangleMeasure.ts +516 -0
  77. package/plugins/cesium-core/src/components/measurement/handlers/RegularPolygonMeasure.ts +472 -0
  78. package/plugins/cesium-core/src/components/measurement/handlers/SpaceMeasure.ts +250 -0
  79. package/plugins/cesium-core/src/components/measurement/handlers/TerrainHeightMeasure.ts +185 -0
  80. package/plugins/cesium-core/src/components/measurement/handlers/TriangleMeasure.ts +561 -0
  81. package/plugins/cesium-core/src/components/measurement/handlers/VerticalMeasure.ts +361 -0
  82. package/plugins/cesium-core/src/components/measurement/index.ts +13 -0
  83. package/plugins/cesium-core/src/components/measurement/types.ts +57 -0
  84. package/plugins/cesium-core/src/components/primitive/PrimitiveManager.ts +556 -0
  85. package/plugins/cesium-core/src/components/roaming/CameraRoamTool.ts +286 -0
  86. package/plugins/cesium-core/src/components/roaming/PathRoamTool.ts +174 -0
  87. package/plugins/cesium-core/src/components/roaming/index.ts +3 -0
  88. package/plugins/cesium-core/src/components/roaming/types.ts +71 -0
  89. package/plugins/cesium-core/src/components/utils/convertGeoJsonToEntityData.ts +98 -0
  90. package/plugins/cesium-core/src/components/utils/uuid.ts +7 -0
  91. package/plugins/cesium-core/src/index.ts +17 -0
  92. package/plugins/cesium-core/src/test/measurement/index.html +166 -0
  93. package/plugins/cesium-core/src/test/roaming/c.gltf +1 -0
  94. package/plugins/cesium-core/src/test/roaming/f87cc3ea918a4b76bff2c88a3655eb1f.bin +0 -0
  95. package/plugins/cesium-core/src/test/roaming/index.html +51 -0
  96. package/plugins/cesium-core/src/test/roaming/path.html +448 -0
  97. package/plugins/cesium-core/src/test/roaming/view.html +520 -0
  98. package/plugins/cesium-core/stats.html +4949 -0
  99. package/plugins/cesium-core/tsconfig.json +14 -0
  100. package/plugins/cesium-core/vite.config.ts +35 -0
  101. package/plugins/cesium-vue/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
  102. package/plugins/cesium-vue/dist/components/basic-audio/index.d.ts +13 -0
  103. package/plugins/cesium-vue/dist/components/basic-audio.d.ts +6 -0
  104. package/plugins/cesium-vue/dist/components/basic-audio.js +1295 -0
  105. package/plugins/cesium-vue/dist/components/basic-video/index.d.ts +98 -0
  106. package/plugins/cesium-vue/dist/components/basic-video.d.ts +6 -0
  107. package/plugins/cesium-vue/dist/components/basic-video.js +67 -0
  108. package/plugins/cesium-vue/dist/components/card-carousel/index.d.ts +147 -0
  109. package/plugins/cesium-vue/dist/components/card-carousel.d.ts +6 -0
  110. package/plugins/cesium-vue/dist/components/card-carousel.js +143 -0
  111. package/plugins/cesium-vue/dist/components/card-content/index.d.ts +16 -0
  112. package/plugins/cesium-vue/dist/components/card-content.d.ts +6 -0
  113. package/plugins/cesium-vue/dist/components/card-content.js +74 -0
  114. package/plugins/cesium-vue/dist/components/card-page/index.d.ts +64 -0
  115. package/plugins/cesium-vue/dist/components/card-page.d.ts +6 -0
  116. package/plugins/cesium-vue/dist/components/card-page.js +111 -0
  117. package/plugins/cesium-vue/dist/components/carousel-img/index.d.ts +34 -0
  118. package/plugins/cesium-vue/dist/components/carousel-img.d.ts +6 -0
  119. package/plugins/cesium-vue/dist/components/carousel-img.js +72 -0
  120. package/plugins/cesium-vue/dist/components/echarts-pro/index.d.ts +63 -0
  121. package/plugins/cesium-vue/dist/components/echarts-pro.d.ts +6 -0
  122. package/plugins/cesium-vue/dist/components/echarts-pro.js +7 -0
  123. package/plugins/cesium-vue/dist/components/marker-bubble/index.d.ts +73 -0
  124. package/plugins/cesium-vue/dist/components/marker-bubble.d.ts +6 -0
  125. package/plugins/cesium-vue/dist/components/marker-bubble.js +123 -0
  126. package/plugins/cesium-vue/dist/components/marker-default/index.d.ts +43 -0
  127. package/plugins/cesium-vue/dist/components/marker-default.d.ts +6 -0
  128. package/plugins/cesium-vue/dist/components/marker-default.js +39 -0
  129. package/plugins/cesium-vue/dist/components/marker-html/index.d.ts +43 -0
  130. package/plugins/cesium-vue/dist/components/marker-html.d.ts +6 -0
  131. package/plugins/cesium-vue/dist/components/marker-html.js +40 -0
  132. package/plugins/cesium-vue/dist/components/marker-manage/index.d.ts +159 -0
  133. package/plugins/cesium-vue/dist/components/marker-manage.d.ts +6 -0
  134. package/plugins/cesium-vue/dist/components/marker-manage.js +896 -0
  135. package/plugins/cesium-vue/dist/components/marker-text/index.d.ts +25 -0
  136. package/plugins/cesium-vue/dist/components/marker-text.d.ts +6 -0
  137. package/plugins/cesium-vue/dist/components/marker-text.js +30 -0
  138. package/plugins/cesium-vue/dist/components/measurement/index.d.ts +73 -0
  139. package/plugins/cesium-vue/dist/components/measurement.d.ts +6 -0
  140. package/plugins/cesium-vue/dist/components/measurement.js +170 -0
  141. package/plugins/cesium-vue/dist/create-DynflqE1.js +31 -0
  142. package/plugins/cesium-vue/dist/index-B03tSn8_.js +45855 -0
  143. package/plugins/cesium-vue/dist/index-CUs_hd1V.js +403 -0
  144. package/plugins/cesium-vue/dist/index.d.ts +44 -0
  145. package/plugins/cesium-vue/dist/index.js +82 -0
  146. package/plugins/cesium-vue/package.json +106 -0
  147. package/plugins/cesium-vue/src/assets/icons/icon-001.png +0 -0
  148. package/plugins/cesium-vue/src/assets/icons/icon-002.png +0 -0
  149. package/plugins/cesium-vue/src/assets/icons/icon-003.png +0 -0
  150. package/plugins/cesium-vue/src/assets/icons/icon-004.png +0 -0
  151. package/plugins/cesium-vue/src/assets/icons/icon-005.png +0 -0
  152. package/plugins/cesium-vue/src/assets/icons/icon-006.png +0 -0
  153. package/plugins/cesium-vue/src/assets/icons/icon-007.png +0 -0
  154. package/plugins/cesium-vue/src/assets/icons/icon-008.png +0 -0
  155. package/plugins/cesium-vue/src/assets/icons/icon-009.png +0 -0
  156. package/plugins/cesium-vue/src/assets/icons/icon-010.png +0 -0
  157. package/plugins/cesium-vue/src/assets/icons/icon-011.png +0 -0
  158. package/plugins/cesium-vue/src/assets/icons/icon-012.png +0 -0
  159. package/plugins/cesium-vue/src/assets/img/Card3-BG.png +0 -0
  160. package/plugins/cesium-vue/src/assets/img/card_bg3.png +0 -0
  161. package/plugins/cesium-vue/src/components/basic-audio/index.ts +6 -0
  162. package/plugins/cesium-vue/src/components/basic-audio/src/BasicAudio.vue +119 -0
  163. package/plugins/cesium-vue/src/components/basic-audio/src/basicAudio.ts +6 -0
  164. package/plugins/cesium-vue/src/components/basic-video/index.ts +7 -0
  165. package/plugins/cesium-vue/src/components/basic-video/src/BasicVideo.vue +58 -0
  166. package/plugins/cesium-vue/src/components/basic-video/src/basicVideo.ts +14 -0
  167. package/plugins/cesium-vue/src/components/card-carousel/index.ts +7 -0
  168. package/plugins/cesium-vue/src/components/card-carousel/src/CardCarousel.vue +124 -0
  169. package/plugins/cesium-vue/src/components/card-carousel/src/cardCarousel.ts +60 -0
  170. package/plugins/cesium-vue/src/components/card-content/index.ts +7 -0
  171. package/plugins/cesium-vue/src/components/card-content/src/CardContent.vue +41 -0
  172. package/plugins/cesium-vue/src/components/card-content/src/cardContent.ts +22 -0
  173. package/plugins/cesium-vue/src/components/card-page/index.ts +7 -0
  174. package/plugins/cesium-vue/src/components/card-page/src/CardPage.vue +102 -0
  175. package/plugins/cesium-vue/src/components/card-page/src/cardPage.ts +37 -0
  176. package/plugins/cesium-vue/src/components/carousel-img/index.ts +7 -0
  177. package/plugins/cesium-vue/src/components/carousel-img/src/CarouselImg.vue +84 -0
  178. package/plugins/cesium-vue/src/components/carousel-img/src/carouselImg.ts +8 -0
  179. package/plugins/cesium-vue/src/components/echarts-pro/index.ts +7 -0
  180. package/plugins/cesium-vue/src/components/echarts-pro/src/EchartsPro.vue +107 -0
  181. package/plugins/cesium-vue/src/components/echarts-pro/src/echartsPro.ts +12 -0
  182. package/plugins/cesium-vue/src/components/echarts-pro/src/hook/useECharts.ts +55 -0
  183. package/plugins/cesium-vue/src/components/marker-bubble/index.ts +7 -0
  184. package/plugins/cesium-vue/src/components/marker-bubble/src/MarkerBubble.vue +235 -0
  185. package/plugins/cesium-vue/src/components/marker-bubble/src/markerBubble.ts +35 -0
  186. package/plugins/cesium-vue/src/components/marker-default/index.ts +7 -0
  187. package/plugins/cesium-vue/src/components/marker-default/src/MarkerDefault.vue +19 -0
  188. package/plugins/cesium-vue/src/components/marker-default/src/markerDefault.ts +12 -0
  189. package/plugins/cesium-vue/src/components/marker-html/index.ts +7 -0
  190. package/plugins/cesium-vue/src/components/marker-html/src/MarkerHtml.vue +21 -0
  191. package/plugins/cesium-vue/src/components/marker-html/src/markerHtml.ts +12 -0
  192. package/plugins/cesium-vue/src/components/marker-manage/index.ts +9 -0
  193. package/plugins/cesium-vue/src/components/marker-manage/src/components/MarkerManage.vue +106 -0
  194. package/plugins/cesium-vue/src/components/marker-manage/src/config/theme.ts +8 -0
  195. package/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManage.ts +466 -0
  196. package/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManagerCore.ts +148 -0
  197. package/plugins/cesium-vue/src/components/marker-manage/src/hook/useMarkerManage.ts +45 -0
  198. package/plugins/cesium-vue/src/components/marker-manage/src/type/markerManage.ts +75 -0
  199. package/plugins/cesium-vue/src/components/marker-manage/src/utils/themeTool.ts +154 -0
  200. package/plugins/cesium-vue/src/components/marker-text/index.ts +7 -0
  201. package/plugins/cesium-vue/src/components/marker-text/src/MarkerText.vue +14 -0
  202. package/plugins/cesium-vue/src/components/marker-text/src/markerText.ts +10 -0
  203. package/plugins/cesium-vue/src/components/measurement/index.ts +7 -0
  204. package/plugins/cesium-vue/src/components/measurement/src/Measurement.vue +183 -0
  205. package/plugins/cesium-vue/src/components/measurement/src/measurement.ts +20 -0
  206. package/plugins/cesium-vue/src/index.ts +89 -0
  207. package/plugins/cesium-vue/stats.html +4949 -0
  208. package/plugins/cesium-vue/tsconfig.json +18 -0
  209. package/plugins/cesium-vue/vite.config.ts +62 -0
  210. package/plugins/plugins/README.md +2 -0
  211. package/plugins/plugins/build.cjs +63 -0
  212. package/plugins/plugins/cesium-core/dist/cesium-core.mjs +5881 -0
  213. package/plugins/plugins/cesium-core/dist/cesium-core.mjs.map +1 -0
  214. package/plugins/plugins/cesium-core/dist/cesium-core.umd.js +77 -0
  215. package/plugins/plugins/cesium-core/dist/cesium-core.umd.js.map +1 -0
  216. package/plugins/plugins/cesium-core/dist/components/BufferedHierarchicalAggregator.d.ts +73 -0
  217. package/plugins/plugins/cesium-core/dist/components/HtmlOverlayLabelPool.d.ts +152 -0
  218. package/plugins/plugins/cesium-core/dist/components/MarkerEvent.d.ts +38 -0
  219. package/plugins/plugins/cesium-core/dist/components/Material/MaterialManager.d.ts +49 -0
  220. package/plugins/plugins/cesium-core/dist/components/Material/help/PolylineFlowMaterialProperty.d.ts +10 -0
  221. package/plugins/plugins/cesium-core/dist/components/Material/help/dynamicImgMaterial.d.ts +16 -0
  222. package/plugins/plugins/cesium-core/dist/components/Material/index.d.ts +3 -0
  223. package/plugins/plugins/cesium-core/dist/components/TooltipManager.d.ts +11 -0
  224. package/plugins/plugins/cesium-core/dist/components/draw/DrawTool.d.ts +10 -0
  225. package/plugins/plugins/cesium-core/dist/components/draw/handlers/CircleDrawer.d.ts +16 -0
  226. package/plugins/plugins/cesium-core/dist/components/draw/handlers/LineDrawer.d.ts +14 -0
  227. package/plugins/plugins/cesium-core/dist/components/draw/handlers/PointDrawer.d.ts +12 -0
  228. package/plugins/plugins/cesium-core/dist/components/draw/handlers/PolygonDrawer.d.ts +14 -0
  229. package/plugins/plugins/cesium-core/dist/components/draw/handlers/RectangleDrawer.d.ts +13 -0
  230. package/plugins/plugins/cesium-core/dist/components/draw/types.d.ts +29 -0
  231. package/plugins/plugins/cesium-core/dist/components/entity/EntityLayer.d.ts +65 -0
  232. package/plugins/plugins/cesium-core/dist/components/gltf/GLTFManage.d.ts +141 -0
  233. package/plugins/plugins/cesium-core/dist/components/gltf/index.d.ts +1 -0
  234. package/plugins/plugins/cesium-core/dist/components/measurement/MeasurementTool.d.ts +34 -0
  235. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/AreaMeasure.d.ts +23 -0
  236. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/CircleMeasure.d.ts +21 -0
  237. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/CoordinateMeasure.d.ts +16 -0
  238. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/HorizontalMeasure.d.ts +25 -0
  239. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/PolylineDistanceMeasure.d.ts +24 -0
  240. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/RectangleMeasure.d.ts +22 -0
  241. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/RegularPolygonMeasure.d.ts +23 -0
  242. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/SpaceMeasure.d.ts +20 -0
  243. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/TerrainHeightMeasure.d.ts +18 -0
  244. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/TriangleMeasure.d.ts +24 -0
  245. package/plugins/plugins/cesium-core/dist/components/measurement/handlers/VerticalMeasure.d.ts +23 -0
  246. package/plugins/plugins/cesium-core/dist/components/measurement/index.d.ts +13 -0
  247. package/plugins/plugins/cesium-core/dist/components/measurement/types.d.ts +42 -0
  248. package/plugins/plugins/cesium-core/dist/components/primitive/PrimitiveManager.d.ts +50 -0
  249. package/plugins/plugins/cesium-core/dist/components/roaming/CameraRoamTool.d.ts +27 -0
  250. package/plugins/plugins/cesium-core/dist/components/roaming/PathRoamTool.d.ts +23 -0
  251. package/plugins/plugins/cesium-core/dist/components/roaming/index.d.ts +3 -0
  252. package/plugins/plugins/cesium-core/dist/components/roaming/types.d.ts +66 -0
  253. package/plugins/plugins/cesium-core/dist/components/utils/convertGeoJsonToEntityData.d.ts +1 -0
  254. package/plugins/plugins/cesium-core/dist/components/utils/uuid.d.ts +1 -0
  255. package/plugins/plugins/cesium-core/dist/index.d.ts +12 -0
  256. package/plugins/plugins/cesium-core/package.json +26 -0
  257. package/plugins/plugins/cesium-core/pnpm-lock.yaml +872 -0
  258. package/plugins/plugins/cesium-core/src/components/BufferedHierarchicalAggregator.ts +546 -0
  259. package/plugins/plugins/cesium-core/src/components/HtmlOverlayLabelPool.ts +489 -0
  260. package/plugins/plugins/cesium-core/src/components/MarkerEvent.ts +92 -0
  261. package/plugins/plugins/cesium-core/src/components/Material/MaterialManager.ts +129 -0
  262. package/plugins/plugins/cesium-core/src/components/Material/help/PolylineFlowMaterialProperty.ts +116 -0
  263. package/plugins/plugins/cesium-core/src/components/Material/help/dynamicImgMaterial.ts +236 -0
  264. package/plugins/plugins/cesium-core/src/components/Material/index.ts +3 -0
  265. package/plugins/plugins/cesium-core/src/components/TooltipManager.ts +52 -0
  266. package/plugins/plugins/cesium-core/src/components/draw/DrawTool.ts +55 -0
  267. package/plugins/plugins/cesium-core/src/components/draw/handlers/CircleDrawer.ts +159 -0
  268. package/plugins/plugins/cesium-core/src/components/draw/handlers/LineDrawer.ts +113 -0
  269. package/plugins/plugins/cesium-core/src/components/draw/handlers/PointDrawer.ts +70 -0
  270. package/plugins/plugins/cesium-core/src/components/draw/handlers/PolygonDrawer.ts +112 -0
  271. package/plugins/plugins/cesium-core/src/components/draw/handlers/RectangleDrawer.ts +115 -0
  272. package/plugins/plugins/cesium-core/src/components/draw/types.ts +28 -0
  273. package/plugins/plugins/cesium-core/src/components/entity/EntityLayer.ts +453 -0
  274. package/plugins/plugins/cesium-core/src/components/gltf/GLTFManage.ts +799 -0
  275. package/plugins/plugins/cesium-core/src/components/gltf/index.ts +1 -0
  276. package/plugins/plugins/cesium-core/src/components/measurement/MeasurementTool.ts +416 -0
  277. package/plugins/plugins/cesium-core/src/components/measurement/handlers/AreaMeasure.ts +451 -0
  278. package/plugins/plugins/cesium-core/src/components/measurement/handlers/CircleMeasure.ts +267 -0
  279. package/plugins/plugins/cesium-core/src/components/measurement/handlers/CoordinateMeasure.ts +139 -0
  280. package/plugins/plugins/cesium-core/src/components/measurement/handlers/HorizontalMeasure.ts +418 -0
  281. package/plugins/plugins/cesium-core/src/components/measurement/handlers/PolylineDistanceMeasure.ts +352 -0
  282. package/plugins/plugins/cesium-core/src/components/measurement/handlers/RectangleMeasure.ts +388 -0
  283. package/plugins/plugins/cesium-core/src/components/measurement/handlers/RegularPolygonMeasure.ts +379 -0
  284. package/plugins/plugins/cesium-core/src/components/measurement/handlers/SpaceMeasure.ts +246 -0
  285. package/plugins/plugins/cesium-core/src/components/measurement/handlers/TerrainHeightMeasure.ts +185 -0
  286. package/plugins/plugins/cesium-core/src/components/measurement/handlers/TriangleMeasure.ts +541 -0
  287. package/plugins/plugins/cesium-core/src/components/measurement/handlers/VerticalMeasure.ts +360 -0
  288. package/plugins/plugins/cesium-core/src/components/measurement/index.ts +13 -0
  289. package/plugins/plugins/cesium-core/src/components/measurement/types.ts +57 -0
  290. package/plugins/plugins/cesium-core/src/components/primitive/PrimitiveManager.ts +556 -0
  291. package/plugins/plugins/cesium-core/src/components/roaming/CameraRoamTool.ts +286 -0
  292. package/plugins/plugins/cesium-core/src/components/roaming/PathRoamTool.ts +174 -0
  293. package/plugins/plugins/cesium-core/src/components/roaming/index.ts +3 -0
  294. package/plugins/plugins/cesium-core/src/components/roaming/types.ts +71 -0
  295. package/plugins/plugins/cesium-core/src/components/utils/convertGeoJsonToEntityData.ts +98 -0
  296. package/plugins/plugins/cesium-core/src/components/utils/uuid.ts +7 -0
  297. package/plugins/plugins/cesium-core/src/index.ts +17 -0
  298. package/plugins/plugins/cesium-core/src/test/measurement/index.html +166 -0
  299. package/plugins/plugins/cesium-core/src/test/roaming/c.gltf +1 -0
  300. package/plugins/plugins/cesium-core/src/test/roaming/f87cc3ea918a4b76bff2c88a3655eb1f.bin +0 -0
  301. package/plugins/plugins/cesium-core/src/test/roaming/index.html +51 -0
  302. package/plugins/plugins/cesium-core/src/test/roaming/path.html +448 -0
  303. package/plugins/plugins/cesium-core/src/test/roaming/view.html +520 -0
  304. package/plugins/plugins/cesium-core/stats.html +4949 -0
  305. package/plugins/plugins/cesium-core/tsconfig.json +14 -0
  306. package/plugins/plugins/cesium-core/vite.config.ts +35 -0
  307. package/plugins/plugins/cesium-vue/dist/components/basic-audio/index.d.ts +18 -0
  308. package/plugins/plugins/cesium-vue/dist/components/basic-audio/index.d.ts.map +1 -0
  309. package/plugins/plugins/cesium-vue/dist/components/basic-video/index.d.ts +92 -0
  310. package/plugins/plugins/cesium-vue/dist/components/basic-video/index.d.ts.map +1 -0
  311. package/plugins/plugins/cesium-vue/dist/components/camera-roam/index.d.ts +82 -0
  312. package/plugins/plugins/cesium-vue/dist/components/camera-roam/index.d.ts.map +1 -0
  313. package/plugins/plugins/cesium-vue/dist/components/card-carousel/index.d.ts +152 -0
  314. package/plugins/plugins/cesium-vue/dist/components/card-carousel/index.d.ts.map +1 -0
  315. package/plugins/plugins/cesium-vue/dist/components/card-content/index.d.ts +21 -0
  316. package/plugins/plugins/cesium-vue/dist/components/card-content/index.d.ts.map +1 -0
  317. package/plugins/plugins/cesium-vue/dist/components/card-page/index.d.ts +69 -0
  318. package/plugins/plugins/cesium-vue/dist/components/card-page/index.d.ts.map +1 -0
  319. package/plugins/plugins/cesium-vue/dist/components/carousel-img/index.d.ts +21 -0
  320. package/plugins/plugins/cesium-vue/dist/components/carousel-img/index.d.ts.map +1 -0
  321. package/plugins/plugins/cesium-vue/dist/components/echarts-pro/index.d.ts +68 -0
  322. package/plugins/plugins/cesium-vue/dist/components/echarts-pro/index.d.ts.map +1 -0
  323. package/plugins/plugins/cesium-vue/dist/components/marker-bubble/index.d.ts +78 -0
  324. package/plugins/plugins/cesium-vue/dist/components/marker-bubble/index.d.ts.map +1 -0
  325. package/plugins/plugins/cesium-vue/dist/components/marker-default/index.d.ts +48 -0
  326. package/plugins/plugins/cesium-vue/dist/components/marker-default/index.d.ts.map +1 -0
  327. package/plugins/plugins/cesium-vue/dist/components/marker-html/index.d.ts +48 -0
  328. package/plugins/plugins/cesium-vue/dist/components/marker-html/index.d.ts.map +1 -0
  329. package/plugins/plugins/cesium-vue/dist/components/marker-manage/index.d.ts +164 -0
  330. package/plugins/plugins/cesium-vue/dist/components/marker-manage/index.d.ts.map +1 -0
  331. package/plugins/plugins/cesium-vue/dist/components/marker-text/index.d.ts +30 -0
  332. package/plugins/plugins/cesium-vue/dist/components/marker-text/index.d.ts.map +1 -0
  333. package/plugins/plugins/cesium-vue/dist/components/measurement/index.d.ts +78 -0
  334. package/plugins/plugins/cesium-vue/dist/components/measurement/index.d.ts.map +1 -0
  335. package/plugins/plugins/cesium-vue/dist/components/path-roam/index.d.ts +82 -0
  336. package/plugins/plugins/cesium-vue/dist/components/path-roam/index.d.ts.map +1 -0
  337. package/plugins/plugins/cesium-vue/dist/components/test/index.d.ts +67 -0
  338. package/plugins/plugins/cesium-vue/dist/components/test/index.d.ts.map +1 -0
  339. package/plugins/plugins/cesium-vue/dist/index.css +1 -0
  340. package/plugins/plugins/cesium-vue/dist/index.d.ts +30 -0
  341. package/plugins/plugins/cesium-vue/dist/index.d.ts.map +1 -0
  342. package/plugins/plugins/cesium-vue/dist/index.js +10087 -0
  343. package/plugins/plugins/cesium-vue/dist/index.js.map +1 -0
  344. package/plugins/plugins/cesium-vue/dist/index.umd.cjs +46 -0
  345. package/plugins/plugins/cesium-vue/dist/index.umd.cjs.map +1 -0
  346. package/plugins/plugins/cesium-vue/package.json +48 -0
  347. package/plugins/plugins/cesium-vue/src/assets/icons/icon-001.png +0 -0
  348. package/plugins/plugins/cesium-vue/src/assets/icons/icon-002.png +0 -0
  349. package/plugins/plugins/cesium-vue/src/assets/icons/icon-003.png +0 -0
  350. package/plugins/plugins/cesium-vue/src/assets/icons/icon-004.png +0 -0
  351. package/plugins/plugins/cesium-vue/src/assets/icons/icon-005.png +0 -0
  352. package/plugins/plugins/cesium-vue/src/assets/icons/icon-006.png +0 -0
  353. package/plugins/plugins/cesium-vue/src/assets/icons/icon-007.png +0 -0
  354. package/plugins/plugins/cesium-vue/src/assets/icons/icon-008.png +0 -0
  355. package/plugins/plugins/cesium-vue/src/assets/icons/icon-009.png +0 -0
  356. package/plugins/plugins/cesium-vue/src/assets/icons/icon-010.png +0 -0
  357. package/plugins/plugins/cesium-vue/src/assets/icons/icon-011.png +0 -0
  358. package/plugins/plugins/cesium-vue/src/assets/icons/icon-012.png +0 -0
  359. package/plugins/plugins/cesium-vue/src/assets/img/Card3-BG.png +0 -0
  360. package/plugins/plugins/cesium-vue/src/assets/img/card_bg3.png +0 -0
  361. package/plugins/plugins/cesium-vue/src/components/basic-audio/index.ts +11 -0
  362. package/plugins/plugins/cesium-vue/src/components/basic-audio/src/BasicAudio.vue +110 -0
  363. package/plugins/plugins/cesium-vue/src/components/basic-audio/src/basicAudio.ts +6 -0
  364. package/plugins/plugins/cesium-vue/src/components/basic-video/index.ts +12 -0
  365. package/plugins/plugins/cesium-vue/src/components/basic-video/src/BasicVideo.vue +99 -0
  366. package/plugins/plugins/cesium-vue/src/components/basic-video/src/basicVideo.ts +13 -0
  367. package/plugins/plugins/cesium-vue/src/components/camera-roam/index.ts +4 -0
  368. package/plugins/plugins/cesium-vue/src/components/camera-roam/src/CameraRoam.vue +434 -0
  369. package/plugins/plugins/cesium-vue/src/components/camera-roam/src/cameraRoam.ts +28 -0
  370. package/plugins/plugins/cesium-vue/src/components/card-carousel/index.ts +12 -0
  371. package/plugins/plugins/cesium-vue/src/components/card-carousel/src/CardCarousel.vue +124 -0
  372. package/plugins/plugins/cesium-vue/src/components/card-carousel/src/cardCarousel.ts +60 -0
  373. package/plugins/plugins/cesium-vue/src/components/card-content/index.ts +12 -0
  374. package/plugins/plugins/cesium-vue/src/components/card-content/src/CardContent.vue +41 -0
  375. package/plugins/plugins/cesium-vue/src/components/card-content/src/cardContent.ts +22 -0
  376. package/plugins/plugins/cesium-vue/src/components/card-page/index.ts +12 -0
  377. package/plugins/plugins/cesium-vue/src/components/card-page/src/CardPage.vue +102 -0
  378. package/plugins/plugins/cesium-vue/src/components/card-page/src/cardPage.ts +37 -0
  379. package/plugins/plugins/cesium-vue/src/components/carousel-img/index.ts +12 -0
  380. package/plugins/plugins/cesium-vue/src/components/carousel-img/src/CarouselImg.vue +15 -0
  381. package/plugins/plugins/cesium-vue/src/components/carousel-img/src/carouselImg.ts +6 -0
  382. package/plugins/plugins/cesium-vue/src/components/echarts-pro/index.ts +12 -0
  383. package/plugins/plugins/cesium-vue/src/components/echarts-pro/src/EchartsPro.vue +107 -0
  384. package/plugins/plugins/cesium-vue/src/components/echarts-pro/src/echartsPro.ts +12 -0
  385. package/plugins/plugins/cesium-vue/src/components/echarts-pro/src/hook/useECharts.ts +55 -0
  386. package/plugins/plugins/cesium-vue/src/components/marker-bubble/index.ts +12 -0
  387. package/plugins/plugins/cesium-vue/src/components/marker-bubble/src/MarkerBubble.vue +235 -0
  388. package/plugins/plugins/cesium-vue/src/components/marker-bubble/src/markerBubble.ts +35 -0
  389. package/plugins/plugins/cesium-vue/src/components/marker-default/index.ts +12 -0
  390. package/plugins/plugins/cesium-vue/src/components/marker-default/src/MarkerDefault.vue +19 -0
  391. package/plugins/plugins/cesium-vue/src/components/marker-default/src/markerDefault.ts +12 -0
  392. package/plugins/plugins/cesium-vue/src/components/marker-html/index.ts +12 -0
  393. package/plugins/plugins/cesium-vue/src/components/marker-html/src/MarkerHtml.vue +21 -0
  394. package/plugins/plugins/cesium-vue/src/components/marker-html/src/markerHtml.ts +12 -0
  395. package/plugins/plugins/cesium-vue/src/components/marker-manage/index.ts +14 -0
  396. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/components/MarkerManage.vue +106 -0
  397. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/config/theme.ts +8 -0
  398. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManage.ts +466 -0
  399. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/core/MarkerManagerCore.ts +148 -0
  400. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/hook/useMarkerManage.ts +45 -0
  401. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/type/markerManage.ts +75 -0
  402. package/plugins/plugins/cesium-vue/src/components/marker-manage/src/utils/themeTool.ts +154 -0
  403. package/plugins/plugins/cesium-vue/src/components/marker-text/index.ts +12 -0
  404. package/plugins/plugins/cesium-vue/src/components/marker-text/src/MarkerText.vue +14 -0
  405. package/plugins/plugins/cesium-vue/src/components/marker-text/src/markerText.ts +10 -0
  406. package/plugins/plugins/cesium-vue/src/components/measurement/index.ts +12 -0
  407. package/plugins/plugins/cesium-vue/src/components/measurement/src/Measurement.vue +183 -0
  408. package/plugins/plugins/cesium-vue/src/components/measurement/src/measurement.ts +20 -0
  409. package/plugins/plugins/cesium-vue/src/components/path-roam/index.ts +4 -0
  410. package/plugins/plugins/cesium-vue/src/components/path-roam/src/PathRoam.vue +429 -0
  411. package/plugins/plugins/cesium-vue/src/components/path-roam/src/pathRoam.ts +28 -0
  412. package/plugins/plugins/cesium-vue/src/components/test/CardMarker.vue +150 -0
  413. package/plugins/plugins/cesium-vue/src/components/test/CesiumMarker.vue +34 -0
  414. package/plugins/plugins/cesium-vue/src/components/test/CesiumViewer.vue +77 -0
  415. package/plugins/plugins/cesium-vue/src/components/test/MyLabel.vue +25 -0
  416. package/plugins/plugins/cesium-vue/src/components/test/index.ts +28 -0
  417. package/plugins/plugins/cesium-vue/src/index.ts +83 -0
  418. package/plugins/plugins/cesium-vue/stats.html +4949 -0
  419. package/plugins/plugins/cesium-vue/tsconfig.json +18 -0
  420. package/plugins/plugins/cesium-vue/vite.config.ts +56 -0
  421. package/plugins/plugins/theme-chalk/dist/theme-chalk.css +819 -0
  422. package/plugins/plugins/theme-chalk/index.less +11 -0
  423. package/plugins/plugins/theme-chalk/package.json +27 -0
  424. package/plugins/plugins/theme-chalk/src/basicAudio.less +41 -0
  425. package/plugins/plugins/theme-chalk/src/basicVideo.less +17 -0
  426. package/plugins/plugins/theme-chalk/src/cameraRoam.less +239 -0
  427. package/plugins/plugins/theme-chalk/src/cardCarousel.less +71 -0
  428. package/plugins/plugins/theme-chalk/src/cardContent.less +73 -0
  429. package/plugins/plugins/theme-chalk/src/cardPage.less +61 -0
  430. package/plugins/plugins/theme-chalk/src/carouselImg.less +34 -0
  431. package/plugins/plugins/theme-chalk/src/marker.less +107 -0
  432. package/plugins/plugins/theme-chalk/src/markerManage.less +25 -0
  433. package/plugins/plugins/theme-chalk/src/measurement.less +106 -0
  434. package/plugins/plugins/theme-chalk/src/mixins/config.less +4 -0
  435. package/plugins/plugins/theme-chalk/src/mixins/mixins.less +64 -0
  436. package/plugins/plugins/theme-chalk/src/pathRoam.less +198 -0
  437. package/plugins/plugins/utils/create.ts +45 -0
  438. package/plugins/plugins/utils/package.json +12 -0
  439. package/plugins/plugins/utils/uuid.ts +43 -0
  440. package/plugins/plugins/utils/with-install.ts +10 -0
  441. package/plugins/theme-chalk/dist/theme-chalk.css +852 -0
  442. package/plugins/theme-chalk/index.less +11 -0
  443. package/plugins/theme-chalk/package.json +27 -0
  444. package/plugins/theme-chalk/src/basicAudio.less +44 -0
  445. package/plugins/theme-chalk/src/basicVideo.less +17 -0
  446. package/plugins/theme-chalk/src/cameraRoam.less +239 -0
  447. package/plugins/theme-chalk/src/cardCarousel.less +71 -0
  448. package/plugins/theme-chalk/src/cardContent.less +73 -0
  449. package/plugins/theme-chalk/src/cardPage.less +61 -0
  450. package/plugins/theme-chalk/src/carouselImg.less +66 -0
  451. package/plugins/theme-chalk/src/marker.less +107 -0
  452. package/plugins/theme-chalk/src/markerManage.less +25 -0
  453. package/plugins/theme-chalk/src/measurement.less +106 -0
  454. package/plugins/theme-chalk/src/mixins/config.less +4 -0
  455. package/plugins/theme-chalk/src/mixins/mixins.less +64 -0
  456. package/plugins/theme-chalk/src/pathRoam.less +198 -0
  457. package/plugins/utils/create.ts +45 -0
  458. package/plugins/utils/package.json +12 -0
  459. package/plugins/utils/uuid.ts +43 -0
  460. package/plugins/utils/with-install.ts +10 -0
@@ -0,0 +1,166 @@
1
+ <!doctype html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Cesium Measurement Demo</title>
7
+ <link
8
+ rel="stylesheet"
9
+ href="https://unpkg.com/cesium@1.124.0/Build/Cesium/Widgets/widgets.css"
10
+ />
11
+ <style>
12
+ html,
13
+ body {
14
+ width: 100%;
15
+ height: 100%;
16
+ margin: 0;
17
+ }
18
+ #cesiumContainer {
19
+ position: absolute;
20
+ inset: 0;
21
+ }
22
+ .toolbar {
23
+ position: absolute;
24
+ top: 10px;
25
+ left: 10px;
26
+ z-index: 9999;
27
+ display: flex;
28
+ flex-wrap: wrap;
29
+ gap: 6px;
30
+ }
31
+ .toolbar button {
32
+ padding: 6px 10px;
33
+ background: #1f2937;
34
+ color: #fff;
35
+ border: none;
36
+ border-radius: 4px;
37
+ cursor: pointer;
38
+ }
39
+ </style>
40
+ </head>
41
+ <body>
42
+ <div id="cesiumContainer"></div>
43
+ <script>
44
+ window.CESIUM_BASE_URL = 'https://unpkg.com/cesium@1.124.0/Build/Cesium/';
45
+ </script>
46
+ <script src="https://unpkg.com/cesium@1.124.0/Build/Cesium/Cesium.js"></script>
47
+ <script type="module">
48
+ Cesium.Ion.defaultAccessToken =
49
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJjZGI0MzM1ZS1hMjY4LTRlYzgtYjg1MC03NmI2ZjUxMmM5ZTUiLCJpZCI6OTUzODIsImlhdCI6MTY1MzYyMTM4OX0.ygoPAb1FvQkQGtziq5nTsWT-u7dCheu5hcG0p9TQFpU';
50
+
51
+ import { MeasurementTool } from '../../../dist/cesium-core.mjs';
52
+
53
+ const viewer = new Cesium.Viewer('cesiumContainer', {
54
+ animation: false,
55
+ timeline: false,
56
+ baseLayerPicker: false,
57
+ geocoder: false,
58
+ sceneModePicker: false,
59
+ navigationHelpButton: false,
60
+ homeButton: false,
61
+ infoBox: false,
62
+ });
63
+ viewer.scene.globe.depthTestAgainstTerrain = true;
64
+
65
+ (async () => {
66
+ try {
67
+ const terrainProvider = await Cesium.ArcGISTiledElevationTerrainProvider.fromUrl(
68
+ 'https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer',
69
+ );
70
+ viewer.terrainProvider = terrainProvider;
71
+ } catch (err) {
72
+ console.error('ArcGIS 地形加载失败,使用椭球地形回退', err);
73
+ viewer.terrainProvider = new Cesium.EllipsoidTerrainProvider();
74
+ }
75
+ })();
76
+
77
+ const tool = new MeasurementTool({ Cesium, viewer });
78
+ tool.disableDefaultSelection({ disableDoubleClick: true });
79
+
80
+ const toolbar = document.createElement('div');
81
+ toolbar.className = 'toolbar';
82
+ const buttons = [
83
+ {
84
+ key: 'horizontal',
85
+ text: '水平量算',
86
+ fn: () =>
87
+ tool.measure('horizontal', {
88
+ color: Cesium.Color.YELLOW,
89
+ lineColor: Cesium.Color.fromCssColorString('#51ff00'),
90
+ dashLineColor: Cesium.Color.RED,
91
+ pointColor: Cesium.Color.YELLOW,
92
+ }),
93
+ },
94
+ {
95
+ key: 'vertical',
96
+ text: '垂直量算',
97
+ fn: () => tool.measure('vertical', { color: Cesium.Color.CYAN }),
98
+ },
99
+ {
100
+ key: 'triangle',
101
+ text: '三角量算',
102
+ fn: () =>
103
+ tool.measure('triangle', {
104
+ color: Cesium.Color.YELLOW,
105
+ lineColor: Cesium.Color.fromCssColorString('#51ff00'),
106
+ dashLineColor: Cesium.Color.RED,
107
+ pointColor: Cesium.Color.YELLOW,
108
+ }),
109
+ },
110
+ {
111
+ key: 'space',
112
+ text: '空间量算',
113
+ fn: () =>
114
+ tool.measure('space', {
115
+ color: Cesium.Color.YELLOW,
116
+ lineColor: Cesium.Color.fromCssColorString('#51ff00'),
117
+ dashLineColor: Cesium.Color.RED,
118
+ }),
119
+ },
120
+ {
121
+ key: 'area',
122
+ text: '面积量算',
123
+ fn: () => tool.measure('area', { color: Cesium.Color.YELLOW.withAlpha(0.4) }),
124
+ },
125
+ {
126
+ key: 'circle',
127
+ text: '圆形量算',
128
+ fn: () => tool.measure('circle', { color: Cesium.Color.YELLOW }),
129
+ },
130
+ {
131
+ key: 'polyline',
132
+ text: '折线距离量算',
133
+ fn: () =>
134
+ tool.measure('polyline', {
135
+ color: Cesium.Color.YELLOW,
136
+ lineColor: Cesium.Color.fromCssColorString('#51ff00'),
137
+ dashLineColor: Cesium.Color.RED,
138
+ pointColor: Cesium.Color.YELLOW,
139
+ }),
140
+ },
141
+ { key: 'terrainHeight', text: '地表高度量算', fn: () => tool.measure('terrainHeight', {}) },
142
+ { key: 'coordinate', text: '坐标量算', fn: () => tool.measure('coordinate', {}) },
143
+ {
144
+ key: 'rectangle',
145
+ text: '矩形量算',
146
+ fn: () => tool.measure('rectangle', { color: Cesium.Color.YELLOW.withAlpha(0.4) }),
147
+ },
148
+ {
149
+ key: 'regularPolygon',
150
+ text: '正多边形量算',
151
+ fn: () =>
152
+ tool.measure('regularPolygon', { sides: 6, color: Cesium.Color.YELLOW.withAlpha(0.4) }),
153
+ },
154
+ { key: 'cancel', text: '取消', fn: () => tool.cancel() },
155
+ { key: 'clear', text: '清理', fn: () => tool.clear() },
156
+ ];
157
+ buttons.forEach((b) => {
158
+ const btn = document.createElement('button');
159
+ btn.innerText = b.text;
160
+ btn.onclick = b.fn;
161
+ toolbar.appendChild(btn);
162
+ });
163
+ document.body.appendChild(toolbar);
164
+ </script>
165
+ </body>
166
+ </html>
@@ -0,0 +1 @@
1
+ {"images":[],"accessors":[{"componentType":5126,"max":[33.4638671875,15.947358131408691,161.28565979003906],"bufferView":0,"count":1056,"type":"VEC3","min":[-291.5669860839844,-25.428112030029297,-7.027040004730225],"byteOffset":0},{"componentType":5126,"bufferView":0,"count":1056,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":0,"count":1056,"type":"VEC2","byteOffset":24},{"componentType":5123,"bufferView":1,"count":1056,"type":"SCALAR","byteOffset":0},{"componentType":5123,"bufferView":1,"count":4848,"type":"SCALAR","byteOffset":2112},{"componentType":5123,"bufferView":1,"count":84,"type":"SCALAR","byteOffset":11808},{"componentType":5123,"bufferView":1,"count":324,"type":"SCALAR","byteOffset":11976},{"componentType":5123,"bufferView":1,"count":336,"type":"SCALAR","byteOffset":12624},{"componentType":5123,"bufferView":1,"count":636,"type":"SCALAR","byteOffset":13296},{"componentType":5123,"bufferView":1,"count":360,"type":"SCALAR","byteOffset":14568},{"componentType":5123,"bufferView":1,"count":18,"type":"SCALAR","byteOffset":15288},{"componentType":5123,"bufferView":1,"count":36,"type":"SCALAR","byteOffset":15324},{"componentType":5123,"bufferView":1,"count":132,"type":"SCALAR","byteOffset":15396},{"componentType":5123,"bufferView":1,"count":90,"type":"SCALAR","byteOffset":15660},{"componentType":5123,"bufferView":1,"count":48,"type":"SCALAR","byteOffset":15840},{"componentType":5123,"bufferView":1,"count":450,"type":"SCALAR","byteOffset":15936},{"componentType":5123,"bufferView":1,"count":66,"type":"SCALAR","byteOffset":16836},{"componentType":5123,"bufferView":1,"count":570,"type":"SCALAR","byteOffset":16968},{"componentType":5123,"bufferView":1,"count":372,"type":"SCALAR","byteOffset":18108},{"componentType":5123,"bufferView":1,"count":156,"type":"SCALAR","byteOffset":18852},{"componentType":5123,"bufferView":1,"count":264,"type":"SCALAR","byteOffset":19164},{"componentType":5123,"bufferView":1,"count":12,"type":"SCALAR","byteOffset":19692},{"componentType":5123,"bufferView":1,"count":588,"type":"SCALAR","byteOffset":19716},{"componentType":5123,"bufferView":1,"count":228,"type":"SCALAR","byteOffset":20892},{"componentType":5126,"max":[30.137313842773438,16.27712059020996,159.5426483154297],"bufferView":2,"count":4848,"type":"VEC3","min":[-288.2403869628906,-0.5346434116363525,-4.85267448425293],"byteOffset":0},{"componentType":5126,"bufferView":2,"count":4848,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":2,"count":4848,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[38.605552673339844,0,-18.102323532104492],"bufferView":3,"count":84,"type":"VEC3","min":[-57.959556579589844,-43.68309020996094,-44.19805145263672],"byteOffset":0},{"componentType":5126,"bufferView":3,"count":84,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":3,"count":84,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[13.171536445617676,10.932853698730469,0.10776446014642715],"bufferView":4,"count":324,"type":"VEC3","min":[-13.171536445617676,-10.932853698730469,-0.0000017811879615692305],"byteOffset":0},{"componentType":5126,"bufferView":4,"count":324,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[15,15,1.000002384185791],"bufferView":5,"count":336,"type":"VEC3","min":[-15,-15,-17.862001419067383],"byteOffset":0},{"componentType":5126,"bufferView":5,"count":336,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[6.793769836425781,6.792596817016602,0.06695421040058136],"bufferView":6,"count":324,"type":"VEC3","min":[-6.793769836425781,-6.792596817016602,-0.0000011066545084759127],"byteOffset":0},{"componentType":5126,"bufferView":6,"count":324,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[2.7606570720672607,2.7601802349090576,0.02720692567527294],"bufferView":7,"count":324,"type":"VEC3","min":[-2.7606570720672607,-2.7601802349090576,-0.00000044969047507947835],"byteOffset":0},{"componentType":5126,"bufferView":7,"count":324,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[9.879907608032227,3.8038530349731445,9.72981071472168],"bufferView":8,"count":636,"type":"VEC3","min":[-9.879907608032227,0,-9.729809761047363],"byteOffset":0},{"componentType":5126,"bufferView":8,"count":636,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":8,"count":636,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[14.338937759399414,6.169225215911865,8.516799926757812],"bufferView":9,"count":360,"type":"VEC3","min":[-16.671884536743164,-5.147615432739258,-0.0000009112619068218919],"byteOffset":0},{"componentType":5126,"bufferView":9,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.6299515962600708,0,1.6051890850067139],"bufferView":10,"count":636,"type":"VEC3","min":[-1.6299515962600708,-8.087811470031738,-1.6051890850067139],"byteOffset":0},{"componentType":5126,"bufferView":10,"count":636,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":10,"count":636,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[5.195830821990967,6.614527225494385,3.261598825454712],"bufferView":11,"count":18,"type":"VEC3","min":[-5.195830821990967,-3.7771341800689697,3.2615983486175537],"byteOffset":0},{"componentType":5126,"bufferView":11,"count":18,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":11,"count":18,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[7.877326965332031,9.024872779846191,4.954644203186035],"bufferView":12,"count":36,"type":"VEC3","min":[-7.877326965332031,-5.400005340576172,-4.954643726348877],"byteOffset":0},{"componentType":5126,"bufferView":12,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":12,"count":36,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.360928535461426,2.360928535461426,1.0000003576278687],"bufferView":13,"count":132,"type":"VEC3","min":[-2.360928535461426,-2.360928773880005,-0.00000038464409612970485],"byteOffset":0},{"componentType":5126,"bufferView":13,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[0.5910402536392212,0.5910402536392212,1.0000001192092896],"bufferView":14,"count":132,"type":"VEC3","min":[-0.5910402536392212,-0.5910404324531555,-0.0000000962926804959352],"byteOffset":0},{"componentType":5126,"bufferView":14,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.793411135673523,0.08017740398645401,1.1207275390625],"bufferView":15,"count":36,"type":"VEC3","min":[1.0062018632888794,-0.08017756789922714,0.12072746455669403],"byteOffset":0},{"componentType":5126,"bufferView":15,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[-1.0062018632888794,0.08017829060554504,1.1207275390625],"bufferView":16,"count":36,"type":"VEC3","min":[-1.7934112548828125,-0.08017722517251968,0.12072741985321045],"byteOffset":0},{"componentType":5126,"bufferView":16,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[7.877326965332031,9.024872779846191,4.954644203186035],"bufferView":17,"count":36,"type":"VEC3","min":[-7.877326965332031,-5.40000581741333,-4.954643726348877],"byteOffset":0},{"componentType":5126,"bufferView":17,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":17,"count":36,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.360928535461426,2.360928535461426,1.0000007152557373],"bufferView":18,"count":132,"type":"VEC3","min":[-2.360928535461426,-2.360928773880005,-0.0000007411343290186778],"byteOffset":0},{"componentType":5126,"bufferView":18,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[0.5910402536392212,0.5910402536392212,1.000000238418579],"bufferView":19,"count":132,"type":"VEC3","min":[-0.5910402536392212,-0.5910405516624451,-0.00000018553727443304524],"byteOffset":0},{"componentType":5126,"bufferView":19,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[-1.0062018632888794,0.08017740398645401,1.1207275390625],"bufferView":20,"count":36,"type":"VEC3","min":[-1.793411135673523,-0.08017771691083908,0.12072745710611343],"byteOffset":0},{"componentType":5126,"bufferView":20,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.793411135673523,0.08017680794000626,1.1207275390625],"bufferView":21,"count":36,"type":"VEC3","min":[1.0062017440795898,-0.08017885684967041,0.12072740495204926],"byteOffset":0},{"componentType":5126,"bufferView":21,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[12.659418106079102,15.233513832092285,68.61531066894531],"bufferView":22,"count":90,"type":"VEC3","min":[-66.34088897705078,-9.31871223449707,3.350843667984009],"byteOffset":0},{"componentType":5126,"bufferView":22,"count":90,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":22,"count":90,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[15.230894088745117,6.074267864227295,19.803707122802734],"bufferView":23,"count":48,"type":"VEC3","min":[-4.2029571533203125,-9.806412696838379,1.37715482711792],"byteOffset":0},{"componentType":5126,"bufferView":23,"count":48,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":23,"count":48,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[65.24314880371094,4.231428146362305,13.055862426757812],"bufferView":24,"count":450,"type":"VEC3","min":[4.522307395935059,-18.439292907714844,-37.28618621826172],"byteOffset":0},{"componentType":5126,"bufferView":24,"count":450,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":24,"count":450,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.672940492630005,15.437027931213379,4.179409027099609],"bufferView":25,"count":1056,"type":"VEC3","min":[-267.9178771972656,0.5447006821632385,-2.864764928817749],"byteOffset":0},{"componentType":5126,"bufferView":25,"count":1056,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":25,"count":1056,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[3.238506317138672,1.7760169506072998,3.9143943786621094],"bufferView":26,"count":66,"type":"VEC3","min":[-3.732257843017578,-1.7758712768554688,-3.4791641235351562],"byteOffset":0},{"componentType":5126,"bufferView":26,"count":66,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":26,"count":66,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[66.34087371826172,15.233449935913086,68.61529541015625],"bufferView":27,"count":90,"type":"VEC3","min":[-12.659418106079102,-9.318724632263184,3.3508527278900146],"byteOffset":0},{"componentType":5126,"bufferView":27,"count":90,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":27,"count":90,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[4.202957630157471,6.074268341064453,19.803707122802734],"bufferView":28,"count":48,"type":"VEC3","min":[-15.230892181396484,-9.806411743164062,1.3771560192108154],"byteOffset":0},{"componentType":5126,"bufferView":28,"count":48,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":28,"count":48,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[-4.522307872772217,4.231429100036621,13.055864334106445],"bufferView":29,"count":450,"type":"VEC3","min":[-65.24314880371094,-18.439287185668945,-37.28617858886719],"byteOffset":0},{"componentType":5126,"bufferView":29,"count":450,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":29,"count":450,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[3.732250213623047,1.7760165929794312,3.914398193359375],"bufferView":30,"count":66,"type":"VEC3","min":[-3.2385177612304688,-1.7758711576461792,-3.4791603088378906],"byteOffset":0},{"componentType":5126,"bufferView":30,"count":66,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":30,"count":66,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[37.516632080078125,5.904451370239258,44.10813903808594],"bufferView":31,"count":570,"type":"VEC3","min":[-56.324729919433594,-56.13705825805664,-131.0352020263672],"byteOffset":0},{"componentType":5126,"bufferView":31,"count":570,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":31,"count":570,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[6.410556793212891,-21.272478103637695,3.328174114227295],"bufferView":32,"count":372,"type":"VEC3","min":[-0.3912181854248047,-23.666027069091797,-3.3281712532043457],"byteOffset":0},{"componentType":5126,"bufferView":32,"count":372,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":32,"count":372,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[-3.5199122428894043,4.231430530548096,19.60259246826172],"bufferView":33,"count":450,"type":"VEC3","min":[-70.53395080566406,-18.439294815063477,-16.34656524658203],"byteOffset":0},{"componentType":5126,"bufferView":33,"count":450,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":33,"count":450,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.9773635864257812,1.7760170698165894,3.931687355041504],"bufferView":34,"count":66,"type":"VEC3","min":[-2.380706787109375,-1.7758710384368896,-4.209504127502441],"byteOffset":0},{"componentType":5126,"bufferView":34,"count":66,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":34,"count":66,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[-275.1712646484375,0.39519500732421875,3.3002941608428955],"bufferView":35,"count":156,"type":"VEC3","min":[-283.9800720214844,-38.40049743652344,-2.6507468223571777],"byteOffset":0},{"componentType":5126,"bufferView":35,"count":156,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":35,"count":156,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[6.706975936889648,6.074270248413086,-3.0837130546569824],"bufferView":36,"count":48,"type":"VEC3","min":[-11.345005989074707,-9.806412696838379,-20.396053314208984],"byteOffset":0},{"componentType":5126,"bufferView":36,"count":48,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":36,"count":48,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[80.28496551513672,15.233510971069336,-4.236227989196777],"bufferView":37,"count":90,"type":"VEC3","min":[-8.305242538452148,-9.318710327148438,-49.48894500732422],"byteOffset":0},{"componentType":5126,"bufferView":37,"count":90,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":37,"count":90,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[8.305246353149414,15.233550071716309,-4.236223220825195],"bufferView":38,"count":90,"type":"VEC3","min":[-80.28496551513672,-9.318706512451172,-49.48896026611328],"byteOffset":0},{"componentType":5126,"bufferView":38,"count":90,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":38,"count":90,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[11.345003128051758,6.074268341064453,-3.0837159156799316],"bufferView":39,"count":48,"type":"VEC3","min":[-6.706977844238281,-9.806410789489746,-20.396053314208984],"byteOffset":0},{"componentType":5126,"bufferView":39,"count":48,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":39,"count":48,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[70.53394317626953,4.231428146362305,19.602569580078125],"bufferView":40,"count":450,"type":"VEC3","min":[3.5199108123779297,-18.439289093017578,-16.346569061279297],"byteOffset":0},{"componentType":5126,"bufferView":40,"count":450,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":40,"count":450,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[0.3912169933319092,-21.272478103637695,3.328178882598877],"bufferView":41,"count":372,"type":"VEC3","min":[-6.410558700561523,-23.666027069091797,-3.3281688690185547],"byteOffset":0},{"componentType":5126,"bufferView":41,"count":372,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":41,"count":372,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.3806991577148438,1.7760159969329834,3.9316835403442383],"bufferView":42,"count":66,"type":"VEC3","min":[-2.977386474609375,-1.7758718729019165,-4.209507942199707],"byteOffset":0},{"componentType":5126,"bufferView":42,"count":66,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":42,"count":66,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[283.9801025390625,0.3951683044433594,3.3002283573150635],"bufferView":43,"count":156,"type":"VEC3","min":[275.1712951660156,-38.40052032470703,-2.650817394256592],"byteOffset":0},{"componentType":5126,"bufferView":43,"count":156,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":43,"count":156,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[9.041306495666504,0.5000004768371582,9.041306495666504],"bufferView":44,"count":132,"type":"VEC3","min":[-9.041306495666504,0,-9.041306495666504],"byteOffset":0},{"componentType":5126,"bufferView":44,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.7242318391799927,0.5000004768371582,1.7242318391799927],"bufferView":45,"count":132,"type":"VEC3","min":[-1.7242318391799927,0,-1.7242318391799927],"byteOffset":0},{"componentType":5126,"bufferView":45,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.7242318391799927,0.5000004768371582,1.7242318391799927],"bufferView":46,"count":132,"type":"VEC3","min":[-1.7242318391799927,0,-1.7242318391799927],"byteOffset":0},{"componentType":5126,"bufferView":46,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.7242318391799927,0.5000004768371582,1.7242318391799927],"bufferView":47,"count":132,"type":"VEC3","min":[-1.7242318391799927,0,-1.7242318391799927],"byteOffset":0},{"componentType":5126,"bufferView":47,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.7242318391799927,0.5000004768371582,1.7242318391799927],"bufferView":48,"count":132,"type":"VEC3","min":[-1.7242318391799927,0,-1.7242318391799927],"byteOffset":0},{"componentType":5126,"bufferView":48,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.7242318391799927,0.5000004768371582,1.7242318391799927],"bufferView":49,"count":132,"type":"VEC3","min":[-1.7242318391799927,0,-1.7242318391799927],"byteOffset":0},{"componentType":5126,"bufferView":49,"count":132,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[0.9032574892044067,2.270379066467285,1.1148635149002075],"bufferView":50,"count":156,"type":"VEC3","min":[-0.9032555818557739,0.12030290067195892,-1.1148608922958374],"byteOffset":0},{"componentType":5126,"bufferView":50,"count":156,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":50,"count":156,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[0.9032574892044067,2.270379066467285,1.1148635149002075],"bufferView":51,"count":156,"type":"VEC3","min":[-0.9032555818557739,0.12030290067195892,-1.1148608922958374],"byteOffset":0},{"componentType":5126,"bufferView":51,"count":156,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":51,"count":156,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":52,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":52,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":52,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":53,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":53,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":53,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":54,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":54,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":54,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[-0.8093113899230957,1.709062099456787,6.718926429748535],"bufferView":55,"count":12,"type":"VEC3","min":[-7.033831596374512,0.7611116170883179,3.181072473526001],"byteOffset":0},{"componentType":5126,"bufferView":55,"count":12,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":56,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":56,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":56,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.7636985778808594,0,3.3103225231170654],"bufferView":57,"count":36,"type":"VEC3","min":[-1.7636985778808594,-1,-3.3103225231170654],"byteOffset":0},{"componentType":5126,"bufferView":57,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":57,"count":36,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":58,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":58,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":59,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":59,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":60,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":60,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":60,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":61,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":61,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":61,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":62,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":62,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":63,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":63,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[-0.8093113899230957,1.709062099456787,6.718926429748535],"bufferView":64,"count":12,"type":"VEC3","min":[-7.033831596374512,0.7611116170883179,3.181072473526001],"byteOffset":0},{"componentType":5126,"bufferView":64,"count":12,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":65,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":65,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":65,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":66,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":66,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":66,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":67,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":67,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":67,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":68,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":68,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":68,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.7636985778808594,0,3.3103225231170654],"bufferView":69,"count":36,"type":"VEC3","min":[-1.7636985778808594,-1,-3.3103225231170654],"byteOffset":0},{"componentType":5126,"bufferView":69,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":69,"count":36,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":70,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":70,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":71,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":71,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":72,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":72,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":72,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":73,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":73,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":73,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":74,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":74,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":75,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":75,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[-0.8093113899230957,1.709062099456787,6.718926429748535],"bufferView":76,"count":12,"type":"VEC3","min":[-7.033831596374512,0.7611116170883179,3.181072473526001],"byteOffset":0},{"componentType":5126,"bufferView":76,"count":12,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":77,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":77,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":77,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":78,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":78,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":78,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":79,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":79,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":79,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":80,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":80,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":80,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.7636985778808594,0,3.3103225231170654],"bufferView":81,"count":36,"type":"VEC3","min":[-1.7636985778808594,-1,-3.3103225231170654],"byteOffset":0},{"componentType":5126,"bufferView":81,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":81,"count":36,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":82,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":82,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":83,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":83,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":84,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":84,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":84,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":85,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":85,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":85,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":86,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":86,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":87,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":87,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[-0.8093113899230957,1.709062099456787,6.718926429748535],"bufferView":88,"count":12,"type":"VEC3","min":[-7.033831596374512,0.7611116170883179,3.181072473526001],"byteOffset":0},{"componentType":5126,"bufferView":88,"count":12,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":89,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":89,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":89,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":90,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":90,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":90,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":91,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":91,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":91,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.3965544700622559,0.26893913745880127,1.375337839126587],"bufferView":92,"count":264,"type":"VEC3","min":[-1.3965543508529663,0.05268440395593643,-1.375337839126587],"byteOffset":0},{"componentType":5126,"bufferView":92,"count":264,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":92,"count":264,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[1.7636985778808594,0,3.3103225231170654],"bufferView":93,"count":36,"type":"VEC3","min":[-1.7636985778808594,-1,-3.3103225231170654],"byteOffset":0},{"componentType":5126,"bufferView":93,"count":36,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":93,"count":36,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":94,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":94,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[4.4434919357299805,0.5,11.154378890991211],"bufferView":95,"count":360,"type":"VEC3","min":[-4.4434919357299805,0,-4.4434919357299805],"byteOffset":0},{"componentType":5126,"bufferView":95,"count":360,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":96,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":96,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":96,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[2.848916530609131,0.05268440395593643,2.8056352138519287],"bufferView":97,"count":588,"type":"VEC3","min":[-2.848916530609131,-1,-2.805635452270508],"byteOffset":0},{"componentType":5126,"bufferView":97,"count":588,"type":"VEC3","byteOffset":12},{"componentType":5126,"bufferView":97,"count":588,"type":"VEC2","byteOffset":24},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":98,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":98,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[10.664883613586426,1.7803168296813965,8.962890625],"bufferView":99,"count":228,"type":"VEC3","min":[-7.5572028160095215,-0.14721617102622986,-27.76789093017578],"byteOffset":0},{"componentType":5126,"bufferView":99,"count":228,"type":"VEC3","byteOffset":12},{"componentType":5126,"max":[-0.8093113899230957,1.709062099456787,6.718926429748535],"bufferView":100,"count":12,"type":"VEC3","min":[-7.033831596374512,0.7611116170883179,3.181072473526001],"byteOffset":0},{"componentType":5126,"bufferView":100,"count":12,"type":"VEC3","byteOffset":12}],"textures":[],"buffers":[{"byteLength":915876,"uri":"f87cc3ea918a4b76bff2c88a3655eb1f.bin"}],"bufferViews":[{"byteLength":33792,"byteStride":32,"target":34962,"byteOffset":0,"buffer":0},{"byteLength":21348,"target":34963,"byteOffset":33792,"buffer":0},{"byteLength":155136,"byteStride":32,"target":34962,"byteOffset":55140,"buffer":0},{"byteLength":2688,"byteStride":32,"target":34962,"byteOffset":210276,"buffer":0},{"byteLength":7776,"byteStride":24,"target":34962,"byteOffset":212964,"buffer":0},{"byteLength":8064,"byteStride":24,"target":34962,"byteOffset":220740,"buffer":0},{"byteLength":7776,"byteStride":24,"target":34962,"byteOffset":228804,"buffer":0},{"byteLength":7776,"byteStride":24,"target":34962,"byteOffset":236580,"buffer":0},{"byteLength":20352,"byteStride":32,"target":34962,"byteOffset":244356,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":264708,"buffer":0},{"byteLength":20352,"byteStride":32,"target":34962,"byteOffset":273348,"buffer":0},{"byteLength":576,"byteStride":32,"target":34962,"byteOffset":293700,"buffer":0},{"byteLength":1152,"byteStride":32,"target":34962,"byteOffset":294276,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":295428,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":298596,"buffer":0},{"byteLength":864,"byteStride":24,"target":34962,"byteOffset":301764,"buffer":0},{"byteLength":864,"byteStride":24,"target":34962,"byteOffset":302628,"buffer":0},{"byteLength":1152,"byteStride":32,"target":34962,"byteOffset":303492,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":304644,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":307812,"buffer":0},{"byteLength":864,"byteStride":24,"target":34962,"byteOffset":310980,"buffer":0},{"byteLength":864,"byteStride":24,"target":34962,"byteOffset":311844,"buffer":0},{"byteLength":2880,"byteStride":32,"target":34962,"byteOffset":312708,"buffer":0},{"byteLength":1536,"byteStride":32,"target":34962,"byteOffset":315588,"buffer":0},{"byteLength":14400,"byteStride":32,"target":34962,"byteOffset":317124,"buffer":0},{"byteLength":33792,"byteStride":32,"target":34962,"byteOffset":331524,"buffer":0},{"byteLength":2112,"byteStride":32,"target":34962,"byteOffset":365316,"buffer":0},{"byteLength":2880,"byteStride":32,"target":34962,"byteOffset":367428,"buffer":0},{"byteLength":1536,"byteStride":32,"target":34962,"byteOffset":370308,"buffer":0},{"byteLength":14400,"byteStride":32,"target":34962,"byteOffset":371844,"buffer":0},{"byteLength":2112,"byteStride":32,"target":34962,"byteOffset":386244,"buffer":0},{"byteLength":18240,"byteStride":32,"target":34962,"byteOffset":388356,"buffer":0},{"byteLength":11904,"byteStride":32,"target":34962,"byteOffset":406596,"buffer":0},{"byteLength":14400,"byteStride":32,"target":34962,"byteOffset":418500,"buffer":0},{"byteLength":2112,"byteStride":32,"target":34962,"byteOffset":432900,"buffer":0},{"byteLength":4992,"byteStride":32,"target":34962,"byteOffset":435012,"buffer":0},{"byteLength":1536,"byteStride":32,"target":34962,"byteOffset":440004,"buffer":0},{"byteLength":2880,"byteStride":32,"target":34962,"byteOffset":441540,"buffer":0},{"byteLength":2880,"byteStride":32,"target":34962,"byteOffset":444420,"buffer":0},{"byteLength":1536,"byteStride":32,"target":34962,"byteOffset":447300,"buffer":0},{"byteLength":14400,"byteStride":32,"target":34962,"byteOffset":448836,"buffer":0},{"byteLength":11904,"byteStride":32,"target":34962,"byteOffset":463236,"buffer":0},{"byteLength":2112,"byteStride":32,"target":34962,"byteOffset":475140,"buffer":0},{"byteLength":4992,"byteStride":32,"target":34962,"byteOffset":477252,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":482244,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":485412,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":488580,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":491748,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":494916,"buffer":0},{"byteLength":3168,"byteStride":24,"target":34962,"byteOffset":498084,"buffer":0},{"byteLength":4992,"byteStride":32,"target":34962,"byteOffset":501252,"buffer":0},{"byteLength":4992,"byteStride":32,"target":34962,"byteOffset":506244,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":511236,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":519684,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":528132,"buffer":0},{"byteLength":288,"byteStride":24,"target":34962,"byteOffset":536580,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":536868,"buffer":0},{"byteLength":1152,"byteStride":32,"target":34962,"byteOffset":545316,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":546468,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":555108,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":563748,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":582564,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":601380,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":606852,"buffer":0},{"byteLength":288,"byteStride":24,"target":34962,"byteOffset":612324,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":612612,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":621060,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":629508,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":637956,"buffer":0},{"byteLength":1152,"byteStride":32,"target":34962,"byteOffset":646404,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":647556,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":656196,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":664836,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":683652,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":702468,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":707940,"buffer":0},{"byteLength":288,"byteStride":24,"target":34962,"byteOffset":713412,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":713700,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":722148,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":730596,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":739044,"buffer":0},{"byteLength":1152,"byteStride":32,"target":34962,"byteOffset":747492,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":748644,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":757284,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":765924,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":784740,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":803556,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":809028,"buffer":0},{"byteLength":288,"byteStride":24,"target":34962,"byteOffset":814500,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":814788,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":823236,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":831684,"buffer":0},{"byteLength":8448,"byteStride":32,"target":34962,"byteOffset":840132,"buffer":0},{"byteLength":1152,"byteStride":32,"target":34962,"byteOffset":848580,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":849732,"buffer":0},{"byteLength":8640,"byteStride":24,"target":34962,"byteOffset":858372,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":867012,"buffer":0},{"byteLength":18816,"byteStride":32,"target":34962,"byteOffset":885828,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":904644,"buffer":0},{"byteLength":5472,"byteStride":24,"target":34962,"byteOffset":910116,"buffer":0},{"byteLength":288,"byteStride":24,"target":34962,"byteOffset":915588,"buffer":0}],"samplers":[],"scene":0,"nodes":[{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Cylinder037","translation":[12.881990314663192,4.682174622142355,-8.201256137369166],"mesh":0},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Box009","translation":[1.0018781434900959,7.616235195720236,7.614070553304662],"mesh":1},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle009","translation":[0.6619485628016193,3.1867123237491057,8.998678822042455],"mesh":2},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle010","translation":[0.6337255548842151,3.2039333573222564,8.954066891195287],"mesh":3},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle011","translation":[0.6619485628016193,3.1867123237491057,9.008749622823705],"mesh":4},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle012","translation":[0.6619485628016193,3.1867123237491057,9.020969051839819],"mesh":5},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Cylinder025","translation":[0.7979711305506427,4.86198037775759,7.367389339925756],"mesh":6},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Line009","translation":[-0.29555949455426145,5.43638223322634,6.917897839071264],"mesh":7},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Cylinder026","translation":[0.8236783754236896,5.359382568919699,7.712283749105444],"mesh":8},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??053","translation":[3.689242721737166,6.343699871623556,11.123706478597631],"mesh":9},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Box011","translation":[3.649386764705916,6.343499600017111,10.979571957113256],"mesh":10},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle013","translation":[3.6159147035486896,6.496136604869406,11.419948238851537],"mesh":11},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle014","translation":[3.6159147035486896,6.496136604869406,11.426516193868627],"mesh":12},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Rectangle001","translation":[3.6159147035486896,6.496136604869406,11.426516193868627],"mesh":13},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Rectangle004","translation":[3.6159147035486896,6.496136604869406,11.426516193868627],"mesh":14},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Box012","translation":[-3.5027376402013104,6.343499600017111,10.979571957113256],"mesh":15},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle015","translation":[-3.5362154234044354,6.496136604869406,11.419948238851537],"mesh":16},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle016","translation":[-3.5362154234044354,6.496136604869406,11.426516193868627],"mesh":17},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Rectangle005","translation":[-3.5362154234044354,6.496136604869406,11.426516193868627],"mesh":18},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Rectangle006","translation":[-3.5362154234044354,6.496136604869406,11.426516193868627],"mesh":19},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??083","translation":[7.438218475521346,3.3553106180072234,-5.397819858072291],"mesh":20},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??084","translation":[7.438218475521346,3.3553106180072234,-5.397819858072291],"mesh":21},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??085","translation":[7.438218475521346,3.3553106180072234,-5.397819858072291],"mesh":22},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??086","translation":[13.232686878383895,0.7381493440509246,-7.938093524454127],"mesh":23},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??087","translation":[13.59111583346202,2.4942705473542617,-8.715122561929713],"mesh":24},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??069","translation":[-7.609419463931779,3.3553106180072234,-5.5318244509677985],"mesh":25},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??070","translation":[-7.609419463931779,3.3553106180072234,-5.5318244509677985],"mesh":26},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??071","translation":[-7.609419463931779,3.3553106180072234,-5.5318244509677985],"mesh":27},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??073","translation":[-13.762321590244035,2.4942705473542617,-8.849125247476588],"mesh":28},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??096","translation":[1.0018781434900959,7.616235195720236,6.994454044820776],"mesh":29},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??004","translation":[-15.690983890353898,2.366602742174308,7.369940418722143],"mesh":30},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??003","translation":[-9.61221897488759,4.98376387270693,6.213106054784765],"mesh":31},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??005","translation":[-16.452105640231828,4.122723757350485,7.654855389120092],"mesh":32},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??053 (1)","translation":[12.442148090542098,3.8707867256045745,7.337466854574194],"mesh":33},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??002","translation":[-9.61221897488759,4.98376387270693,6.213106054784765],"mesh":34},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??001","translation":[-9.61221897488759,4.98376387270693,6.213106054784765],"mesh":35},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??055","translation":[9.565885425747176,4.98376387270693,5.889548916341772],"mesh":36},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??056","translation":[9.565885425747176,4.98376387270693,5.889548916341772],"mesh":37},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??057","translation":[9.565885425747176,4.98376387270693,5.889548916341772],"mesh":38},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??058","translation":[15.644651294887801,2.366602742174308,7.046382565023412],"mesh":39},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??059","translation":[16.40577018374278,4.122723757350485,7.331296581747045],"mesh":40},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"??068","translation":[-12.488478778659562,3.8707867256045745,7.013909000875463],"mesh":41},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle023","translation":[0.06147137397601199,8.20668023737673,2.6481007523555657],"mesh":42},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle024","translation":[0.06147137397601199,8.20668023737673,1.367973703863134],"mesh":43},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle025","translation":[0.06147137397601199,8.20668023737673,0.7901662774104974],"mesh":44},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle026","translation":[0.06147137397601199,8.20668023737673,0.21235789728354426],"mesh":45},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle027","translation":[0.06147137397601199,8.20668023737673,-0.36545000600625066],"mesh":46},{"scale":[0.10000000149011612,0.10000000149011612,0.10000000149011612],"name":"Circle028","translation":[0.06147137397601199,8.20668023737673,-0.9432579092960456],"mesh":47},{"scale":[0.10696103423833847,0.10000000149011612,0.09349201619625092],"name":"??063","translation":[15.724981189907332,6.2867283216357635,7.314851421834936],"mesh":48},{"scale":[0.10696103423833847,0.10000000149011612,0.09349201619625092],"name":"??062","translation":[15.538339496792098,6.286729036891501,6.675167698385229],"mesh":49},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??060","translation":[0.8494893908500671,1.0853919982910156,2.941645860671997],"mesh":50},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??061","translation":[-1.0169070959091187,1.0854072570800781,-3.4551758766174316],"mesh":51},{"rotation":[-0.1265786588191986,0,0.9919565916061401,0.00000000000000358152126933662],"scale":[-1.0516750812530518,-0.6966822743415833,-1.774873971939087],"name":"??065","translation":[-1.8588296175003052,0.4058570861816406,-3.778784990310669],"mesh":52},{"rotation":[-0.999122679233551,0.0003311118052806705,0.04109971597790718,0.008039320819079876],"scale":[-1.5095484256744385,-1.000000238418579,-2.547609329223633],"name":"??066","translation":[19.610353469848633,-1.3647537231445312,71.90705108642578],"mesh":53},{"rotation":[0.9919565320014954,0,0.12657904624938965,0.000000000000007163043385706187],"scale":[-1.0516749620437622,-0.6966820359230042,-1.7748737335205078],"name":"??067","translation":[1.858884334564209,0.3329200744628906,3.7787437438964844],"mesh":54},{"rotation":[-0.1544651836156845,0,-0.9879982471466064,0.000000000000010787611716455217],"scale":[-0.6972468495368958,-0.36767515540122986,-0.8922766447067261],"name":"Box013","translation":[-0.1492299735546112,1.1408500671386719,-0.39514702558517456],"mesh":55},{"rotation":[0,0.1747235208749771,0,0.9846175312995911],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle029","translation":[-3.043274402618408,0.030162811279296875,-7.956336975097656],"mesh":56},{"rotation":[0,-0.9846175312995911,0,0.17472346127033234],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle030","translation":[2.6473984718322754,0.030162811279296875,7.318142414093018],"mesh":57},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder028","translation":[0.8494893908500671,1.1408500671386719,2.941645860671997],"mesh":58},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder029","translation":[-1.016964316368103,1.1408500671386719,-3.4551453590393066],"mesh":59},{"rotation":[-0.030141359195113182,-0.003160316962748766,-0.9995406270027161,0.0000948180677369237],"scale":[-1.5095484256744385,-0.9999998211860657,-2.5476088523864746],"name":"Line010","translation":[-19.610349655151367,-1.2916336059570312,-71.90711212158203],"mesh":60},{"rotation":[-0.9995406270027161,0.00009573856368660927,0.0301410760730505,0.0031610047444701195],"scale":[-1.5095484256744385,-0.9999998807907104,-2.5476088523864746],"name":"Line011","translation":[19.6103458404541,-1.3647537231445312,71.90705108642578],"mesh":61},{"children":[50,51,52,53,54,55,56,57,58,59,60,61],"name":"?001","translation":[0,-0.000003814697265625,-0.000020574909285642207]},{"rotation":[-0.030141355469822884,-0.0031605546828359365,-0.9995406270027161,0.00009483048052061349],"scale":[-1.509548544883728,-0.9999998211860657,-2.5476088523864746],"name":"??064","translation":[-19.610349655151367,-1.2916336059570312,-71.9071273803711],"mesh":62},{"rotation":[0,0.7071071267127991,0,0.7071064710617065],"scale":[0.09999998658895493,0.10000000149011612,0.09999998658895493],"children":[62,63],"name":"?002","translation":[15.640035511196395,6.403098522746603,7.020673412801733]},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??097","translation":[0.849473237991333,1.085397720336914,2.9416921138763428],"mesh":63},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??098","translation":[-1.016923189163208,1.085409164428711,-3.4551751613616943],"mesh":64},{"rotation":[-0.1265786588191986,0,0.9919565916061401,0.00000000000000358152126933662],"scale":[-1.0516750812530518,-0.6966822743415833,-1.774873971939087],"name":"??100","translation":[-1.8588266372680664,0.40585899353027344,-3.7787537574768066],"mesh":65},{"rotation":[0.9919565320014954,0,0.12657904624938965,0.000000000000007163043385706187],"scale":[-1.0516749620437622,-0.6966820359230042,-1.7748737335205078],"name":"??101","translation":[1.8588948249816895,0.33292198181152344,3.7787747383117676],"mesh":66},{"rotation":[-0.1544651836156845,0,-0.9879982471466064,0.000000000000010787611716455217],"scale":[-0.6972468495368958,-0.36767515540122986,-0.8922766447067261],"name":"Box014","translation":[-0.14923468232154846,1.1408462524414062,-0.3950854539871216],"mesh":67},{"rotation":[0,0.1747235208749771,0,0.9846175312995911],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle031","translation":[-3.0432333946228027,0.03015899658203125,-7.956275463104248],"mesh":68},{"rotation":[0,-0.9846175312995911,0,0.17472346127033234],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle032","translation":[2.6473898887634277,0.03015899658203125,7.318143367767334],"mesh":69},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder038","translation":[0.849473237991333,1.1408462524414062,2.9416921138763428],"mesh":70},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder039","translation":[-1.0169765949249268,1.1408557891845703,-3.4551141262054443],"mesh":71},{"rotation":[-0.030141359195113182,-0.003160316962748766,-0.9995406270027161,0.0000948180677369237],"scale":[-1.5095484256744385,-0.9999998211860657,-2.5476088523864746],"name":"Line012","translation":[-19.61035919189453,-1.2916336059570312,-71.9070816040039],"mesh":72},{"rotation":[-0.9995406270027161,0.00009573856368660927,0.0301410760730505,0.0031610047444701195],"scale":[-1.5095484256744385,-0.9999998807907104,-2.5476088523864746],"name":"Line013","translation":[19.610326766967773,-1.3647518157958984,71.90706634521484],"mesh":73},{"children":[65,66,67,68,69,70,71,72,73,74,75],"name":"?003"},{"rotation":[-0.030141355469822884,-0.0031605546828359365,-0.9995406270027161,0.00009483048052061349],"scale":[-1.509548544883728,-0.9999998211860657,-2.5476088523864746],"name":"??099","translation":[-19.61035919189453,-1.2916336059570312,-71.9070816040039],"mesh":74},{"rotation":[0,0.7071071267127991,0,0.7071064710617065],"scale":[0.09999998658895493,0.10000000149011612,0.09999998658895493],"children":[76,77],"name":"?004","translation":[12.919923664272567,4.746361910426657,-8.143175464151392]},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??102","translation":[0.8494852781295776,1.085397720336914,2.9416630268096924],"mesh":75},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??103","translation":[-1.016911268234253,1.085409164428711,-3.4551587104797363],"mesh":76},{"rotation":[-0.1265786588191986,0,0.9919565916061401,0.00000000000000358152126933662],"scale":[-1.0516750812530518,-0.6966822743415833,-1.774873971939087],"name":"??105","translation":[-1.8588147163391113,0.40585899353027344,-3.778783082962036],"mesh":77},{"rotation":[0.9919565320014954,0,0.12657904624938965,0.000000000000007163043385706187],"scale":[-1.0516749620437622,-0.6966820359230042,-1.7748737335205078],"name":"??106","translation":[1.8588992357254028,0.33292198181152344,3.7787609100341797],"mesh":78},{"rotation":[-0.1544651836156845,0,-0.9879982471466064,0.000000000000010787611716455217],"scale":[-0.6972468495368958,-0.36767515540122986,-0.8922766447067261],"name":"Box015","translation":[-0.14922268688678741,1.1408462524414062,-0.39509934186935425],"mesh":79},{"rotation":[0,0.1747235208749771,0,0.9846175312995911],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle033","translation":[-3.04323673248291,0.03015899658203125,-7.956289291381836],"mesh":80},{"rotation":[0,-0.9846175312995911,0,0.17472346127033234],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle034","translation":[2.647409677505493,0.03015899658203125,7.318159580230713],"mesh":81},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder040","translation":[0.8494852781295776,1.1408462524414062,2.941678285598755],"mesh":82},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder041","translation":[-1.0169646739959717,1.1408557891845703,-3.4551587104797363],"mesh":83},{"rotation":[-0.030141359195113182,-0.003160316962748766,-0.9995406270027161,0.0000948180677369237],"scale":[-1.5095484256744385,-0.9999998211860657,-2.5476088523864746],"name":"Line014","translation":[-19.6103458404541,-1.2916336059570312,-71.90711212158203],"mesh":84},{"rotation":[-0.9995406270027161,0.00009573856368660927,0.0301410760730505,0.0031610047444701195],"scale":[-1.5095484256744385,-0.9999998807907104,-2.5476088523864746],"name":"Line015","translation":[19.61037826538086,-1.3647518157958984,71.9071044921875],"mesh":85},{"children":[79,80,81,82,83,84,85,86,87,88,89],"name":"?005"},{"rotation":[-0.030141355469822884,-0.0031605546828359365,-0.9995406270027161,0.00009483048052061349],"scale":[-1.509548544883728,-0.9999998211860657,-2.5476088523864746],"name":"??104","translation":[-19.6103458404541,-1.2916336059570312,-71.90711212158203],"mesh":86},{"rotation":[0,0.7071071267127991,0,0.7071064710617065],"scale":[0.09999998658895493,0.10000000149011612,0.09999998658895493],"children":[90,91],"name":"?006","translation":[-13.091984866916398,4.746361910426657,-8.310949664590845]},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??107","translation":[0.8494943976402283,1.0853919982910156,2.941673994064331],"mesh":87},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.6972469687461853,-0.6966820359230042,-0.8922768235206604],"name":"??108","translation":[-1.016898274421692,1.0854072570800781,-3.455162763595581],"mesh":88},{"rotation":[-0.1265786588191986,0,0.9919565916061401,0.00000000000000358152126933662],"scale":[-1.0516750812530518,-0.6966822743415833,-1.774873971939087],"name":"??110","translation":[-1.8588207960128784,0.4058570861816406,-3.7788023948669434],"mesh":89},{"rotation":[0.9919565320014954,0,0.12657904624938965,0.000000000000007163043385706187],"scale":[-1.0516749620437622,-0.6966820359230042,-1.7748737335205078],"name":"??111","translation":[1.8588855266571045,0.3329200744628906,3.7787718772888184],"mesh":90},{"rotation":[-0.1544651836156845,0,-0.9879982471466064,0.000000000000010787611716455217],"scale":[-0.6972468495368958,-0.36767515540122986,-0.8922766447067261],"name":"Box016","translation":[-0.1492287814617157,1.1408500671386719,-0.3950882852077484],"mesh":91},{"rotation":[0,0.1747235208749771,0,0.9846175312995911],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle035","translation":[-3.0432732105255127,0.030162811279296875,-7.956278324127197],"mesh":92},{"rotation":[0,-0.9846175312995911,0,0.17472346127033234],"scale":[0.7209804058074951,0.7209805250167847,0.7209804058074951],"name":"Circle036","translation":[2.647399663925171,0.030162811279296875,7.318155765533447],"mesh":93},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder042","translation":[0.8494943976402283,1.1408500671386719,2.9416892528533936],"mesh":94},{"rotation":[-0.15446516871452332,0,-0.9879982471466064,0.000000000000003595870430979581],"scale":[-0.697246789932251,-0.36767515540122986,-0.8922766447067261],"name":"Cylinder043","translation":[-1.0169631242752075,1.1408500671386719,-3.455162763595581],"mesh":95},{"rotation":[-0.030141359195113182,-0.003160316962748766,-0.9995406270027161,0.0000948180677369237],"scale":[-1.5095484256744385,-0.9999998211860657,-2.5476088523864746],"name":"Line016","translation":[-19.610353469848633,-1.2916336059570312,-71.90709686279297],"mesh":96},{"rotation":[-0.9995406270027161,0.00009573856368660927,0.0301410760730505,0.0031610047444701195],"scale":[-1.5095484256744385,-0.9999998807907104,-2.5476088523864746],"name":"Line017","translation":[19.610349655151367,-1.3647537231445312,71.90709686279297],"mesh":97},{"children":[93,94,95,96,97,98,99,100,101,102,103],"name":"?007"},{"rotation":[-0.030141355469822884,-0.0031605546828359365,-0.9995406270027161,0.00009483048052061349],"scale":[-1.509548544883728,-0.9999998211860657,-2.5476088523864746],"name":"??109","translation":[-19.610353469848633,-1.2916336059570312,-71.9070816040039],"mesh":98},{"rotation":[0,0.7071071267127991,0,0.7071064710617065],"scale":[0.09999998658895493,0.10000000149011612,0.09999998658895493],"children":[104,105],"name":"?008","translation":[-15.640029071628312,6.403098522746603,7.301149029256811]},{"name":"Default light","translation":[-27.66653740292714,2.342020451152365,7.315468449117651]},{"rotation":[0.16907578706741333,0.7558803558349609,-0.27217140793800354,0.570947527885437],"name":"Light","translation":[-23.590293048679094,8.245882450664084,6.310014147283544]},{"rotation":[0.483536034822464,0.33687159419059753,-0.20870360732078552,0.7804827094078064],"name":"Camera.001","translation":[-20.307646869479875,7.300329624736349,14.241258282186498]}],"materials":[{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.06575388026033009,0.06575388026033009,0.06575388026033009,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"03 - Default","doubleSided":true},{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.27450981736183167,0.27450981736183167,0.27450981736183167,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"13 - Brushed Metal"},{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.07450980693101883,0.08627451211214066,0.0941176563501358,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"02 - Default"},{"pbrMetallicRoughness":{"roughnessFactor":0.5,"baseColorFactor":[0.05284162552287903,0.0697270844425988,0.08241420588845923,1],"metallicFactor":0},"alphaCutoff":0.01,"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"Wall Paint","alphaMode":"BLEND"},{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.011764707043766975,0.011764707043766975,0.22745099663734436,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"Solid Glass"},{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.08235294371843338,0.2666666805744171,0.5333333611488342,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"01 - Default"},{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.019607843831181526,0.4274510145187378,0.019607843831181526,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"Ceramic"},{"pbrMetallicRoughness":{"roughnessFactor":0,"baseColorFactor":[0.9764706492424011,0.9764706492424011,0.9764706492424011,1],"metallicFactor":0},"extensions":{"KHR_materials_specular":{"specularFactor":0.3}},"name":"14 - Polished Aluminum"}],"scenes":[{"nodes":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,64,78,92,106,107,108,109],"name":"Scene"}],"asset":{"generator":"CG美术之家","source":"https://www.cgmszj.com/model/108195.html","version":"2.0"},"meshes":[{"primitives":[{"mode":4,"indices":3,"material":0,"attributes":{"POSITION":0,"TEXCOORD_0":2,"NORMAL":1}},{"mode":4,"indices":4,"material":1,"attributes":{"POSITION":24,"TEXCOORD_0":26,"NORMAL":25}}],"name":"Cylinder037"},{"primitives":[{"mode":4,"indices":5,"material":2,"attributes":{"POSITION":27,"TEXCOORD_0":29,"NORMAL":28}}],"name":"Box009"},{"primitives":[{"mode":4,"indices":6,"material":3,"attributes":{"POSITION":30,"NORMAL":31}}],"name":"Circle009"},{"primitives":[{"mode":4,"indices":7,"material":0,"attributes":{"POSITION":32,"NORMAL":33}}],"name":"Circle010"},{"primitives":[{"mode":4,"indices":6,"material":1,"attributes":{"POSITION":34,"NORMAL":35}}],"name":"Circle011"},{"primitives":[{"mode":4,"indices":6,"material":3,"attributes":{"POSITION":36,"NORMAL":37}}],"name":"Circle012"},{"primitives":[{"mode":4,"indices":8,"material":0,"attributes":{"POSITION":38,"TEXCOORD_0":40,"NORMAL":39}}],"name":"Cylinder025"},{"primitives":[{"mode":4,"indices":9,"material":0,"attributes":{"POSITION":41,"NORMAL":42}}],"name":"Line009"},{"primitives":[{"mode":4,"indices":8,"attributes":{"POSITION":43,"TEXCOORD_0":45,"NORMAL":44}}],"name":"Cylinder026"},{"primitives":[{"mode":4,"indices":10,"attributes":{"POSITION":46,"TEXCOORD_0":48,"NORMAL":47}}],"name":"??053"},{"primitives":[{"mode":4,"indices":11,"material":2,"attributes":{"POSITION":49,"TEXCOORD_0":51,"NORMAL":50}}],"name":"Box011"},{"primitives":[{"mode":4,"indices":12,"material":3,"attributes":{"POSITION":52,"NORMAL":53}}],"name":"Circle013"},{"primitives":[{"mode":4,"indices":12,"material":4,"attributes":{"POSITION":54,"NORMAL":55}}],"name":"Circle014"},{"primitives":[{"mode":4,"indices":11,"material":4,"attributes":{"POSITION":56,"NORMAL":57}}],"name":"Rectangle001"},{"primitives":[{"mode":4,"indices":11,"material":4,"attributes":{"POSITION":58,"NORMAL":59}}],"name":"Rectangle004"},{"primitives":[{"mode":4,"indices":11,"material":2,"attributes":{"POSITION":60,"TEXCOORD_0":62,"NORMAL":61}}],"name":"Box012"},{"primitives":[{"mode":4,"indices":12,"material":3,"attributes":{"POSITION":63,"NORMAL":64}}],"name":"Circle015"},{"primitives":[{"mode":4,"indices":12,"material":4,"attributes":{"POSITION":65,"NORMAL":66}}],"name":"Circle016"},{"primitives":[{"mode":4,"indices":11,"material":4,"attributes":{"POSITION":67,"NORMAL":68}}],"name":"Rectangle005"},{"primitives":[{"mode":4,"indices":11,"material":4,"attributes":{"POSITION":69,"NORMAL":70}}],"name":"Rectangle006"},{"primitives":[{"mode":4,"indices":13,"material":2,"attributes":{"POSITION":71,"TEXCOORD_0":73,"NORMAL":72}}],"name":"??083"},{"primitives":[{"mode":4,"indices":14,"material":5,"attributes":{"POSITION":74,"TEXCOORD_0":76,"NORMAL":75}}],"name":"??084"},{"primitives":[{"mode":4,"indices":15,"material":2,"attributes":{"POSITION":77,"TEXCOORD_0":79,"NORMAL":78}}],"name":"??085"},{"primitives":[{"mode":4,"indices":3,"material":3,"attributes":{"POSITION":80,"TEXCOORD_0":82,"NORMAL":81}}],"name":"??086"},{"primitives":[{"mode":4,"indices":16,"attributes":{"POSITION":83,"TEXCOORD_0":85,"NORMAL":84}}],"name":"??087"},{"primitives":[{"mode":4,"indices":13,"material":2,"attributes":{"POSITION":86,"TEXCOORD_0":88,"NORMAL":87}}],"name":"??069"},{"primitives":[{"mode":4,"indices":14,"material":5,"attributes":{"POSITION":89,"TEXCOORD_0":91,"NORMAL":90}}],"name":"??070"},{"primitives":[{"mode":4,"indices":15,"material":2,"attributes":{"POSITION":92,"TEXCOORD_0":94,"NORMAL":93}}],"name":"??071"},{"primitives":[{"mode":4,"indices":16,"attributes":{"POSITION":95,"TEXCOORD_0":97,"NORMAL":96}}],"name":"??073"},{"primitives":[{"mode":4,"indices":17,"material":2,"attributes":{"POSITION":98,"TEXCOORD_0":100,"NORMAL":99}}],"name":"??096"},{"primitives":[{"mode":4,"indices":18,"material":3,"attributes":{"POSITION":101,"TEXCOORD_0":103,"NORMAL":102}}],"name":"??004"},{"primitives":[{"mode":4,"indices":15,"material":2,"attributes":{"POSITION":104,"TEXCOORD_0":106,"NORMAL":105}}],"name":"??003"},{"primitives":[{"mode":4,"indices":16,"attributes":{"POSITION":107,"TEXCOORD_0":109,"NORMAL":108}}],"name":"??005"},{"primitives":[{"mode":4,"indices":19,"material":2,"attributes":{"POSITION":110,"TEXCOORD_0":112,"NORMAL":111}}],"name":"??053.001"},{"primitives":[{"mode":4,"indices":14,"material":5,"attributes":{"POSITION":113,"TEXCOORD_0":115,"NORMAL":114}}],"name":"??002"},{"primitives":[{"mode":4,"indices":13,"material":2,"attributes":{"POSITION":116,"TEXCOORD_0":118,"NORMAL":117}}],"name":"??001"},{"primitives":[{"mode":4,"indices":13,"material":2,"attributes":{"POSITION":119,"TEXCOORD_0":121,"NORMAL":120}}],"name":"??055"},{"primitives":[{"mode":4,"indices":14,"material":5,"attributes":{"POSITION":122,"TEXCOORD_0":124,"NORMAL":123}}],"name":"??056"},{"primitives":[{"mode":4,"indices":15,"material":2,"attributes":{"POSITION":125,"TEXCOORD_0":127,"NORMAL":126}}],"name":"??057"},{"primitives":[{"mode":4,"indices":18,"material":3,"attributes":{"POSITION":128,"TEXCOORD_0":130,"NORMAL":129}}],"name":"??058"},{"primitives":[{"mode":4,"indices":16,"attributes":{"POSITION":131,"TEXCOORD_0":133,"NORMAL":132}}],"name":"??059"},{"primitives":[{"mode":4,"indices":19,"material":2,"attributes":{"POSITION":134,"TEXCOORD_0":136,"NORMAL":135}}],"name":"??068"},{"primitives":[{"mode":4,"indices":12,"material":3,"attributes":{"POSITION":137,"NORMAL":138}}],"name":"Circle023"},{"primitives":[{"mode":4,"indices":12,"material":6,"attributes":{"POSITION":139,"NORMAL":140}}],"name":"Circle024"},{"primitives":[{"mode":4,"indices":12,"material":6,"attributes":{"POSITION":141,"NORMAL":142}}],"name":"Circle025"},{"primitives":[{"mode":4,"indices":12,"material":6,"attributes":{"POSITION":143,"NORMAL":144}}],"name":"Circle026"},{"primitives":[{"mode":4,"indices":12,"material":6,"attributes":{"POSITION":145,"NORMAL":146}}],"name":"Circle027"},{"primitives":[{"mode":4,"indices":12,"material":6,"attributes":{"POSITION":147,"NORMAL":148}}],"name":"Circle028"},{"primitives":[{"mode":4,"indices":19,"attributes":{"POSITION":149,"TEXCOORD_0":151,"NORMAL":150}}],"name":"??063"},{"primitives":[{"mode":4,"indices":19,"attributes":{"POSITION":152,"TEXCOORD_0":154,"NORMAL":153}}],"name":"??062"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":155,"TEXCOORD_0":157,"NORMAL":156}}],"name":"??060"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":158,"TEXCOORD_0":160,"NORMAL":159}}],"name":"??061"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":161,"TEXCOORD_0":163,"NORMAL":162}}],"name":"??065"},{"primitives":[{"mode":4,"indices":21,"material":7,"attributes":{"POSITION":164,"NORMAL":165}}],"name":"??066"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":166,"TEXCOORD_0":168,"NORMAL":167}}],"name":"??067"},{"primitives":[{"mode":4,"indices":11,"material":3,"attributes":{"POSITION":169,"TEXCOORD_0":171,"NORMAL":170}}],"name":"Box013"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":172,"NORMAL":173}}],"name":"Circle029"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":174,"NORMAL":175}}],"name":"Circle030"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":176,"TEXCOORD_0":178,"NORMAL":177}}],"name":"Cylinder028"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":179,"TEXCOORD_0":181,"NORMAL":180}}],"name":"Cylinder029"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":182,"NORMAL":183}}],"name":"Line010"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":184,"NORMAL":185}}],"name":"Line011"},{"primitives":[{"mode":4,"indices":21,"material":7,"attributes":{"POSITION":186,"NORMAL":187}}],"name":"??064"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":188,"TEXCOORD_0":190,"NORMAL":189}}],"name":"??097"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":191,"TEXCOORD_0":193,"NORMAL":192}}],"name":"??098"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":194,"TEXCOORD_0":196,"NORMAL":195}}],"name":"??100"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":197,"TEXCOORD_0":199,"NORMAL":198}}],"name":"??101"},{"primitives":[{"mode":4,"indices":11,"material":3,"attributes":{"POSITION":200,"TEXCOORD_0":202,"NORMAL":201}}],"name":"Box014"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":203,"NORMAL":204}}],"name":"Circle031"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":205,"NORMAL":206}}],"name":"Circle032"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":207,"TEXCOORD_0":209,"NORMAL":208}}],"name":"Cylinder038"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":210,"TEXCOORD_0":212,"NORMAL":211}}],"name":"Cylinder039"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":213,"NORMAL":214}}],"name":"Line012"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":215,"NORMAL":216}}],"name":"Line013"},{"primitives":[{"mode":4,"indices":21,"material":7,"attributes":{"POSITION":217,"NORMAL":218}}],"name":"??099"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":219,"TEXCOORD_0":221,"NORMAL":220}}],"name":"??102"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":222,"TEXCOORD_0":224,"NORMAL":223}}],"name":"??103"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":225,"TEXCOORD_0":227,"NORMAL":226}}],"name":"??105"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":228,"TEXCOORD_0":230,"NORMAL":229}}],"name":"??106"},{"primitives":[{"mode":4,"indices":11,"material":3,"attributes":{"POSITION":231,"TEXCOORD_0":233,"NORMAL":232}}],"name":"Box015"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":234,"NORMAL":235}}],"name":"Circle033"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":236,"NORMAL":237}}],"name":"Circle034"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":238,"TEXCOORD_0":240,"NORMAL":239}}],"name":"Cylinder040"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":241,"TEXCOORD_0":243,"NORMAL":242}}],"name":"Cylinder041"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":244,"NORMAL":245}}],"name":"Line014"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":246,"NORMAL":247}}],"name":"Line015"},{"primitives":[{"mode":4,"indices":21,"material":7,"attributes":{"POSITION":248,"NORMAL":249}}],"name":"??104"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":250,"TEXCOORD_0":252,"NORMAL":251}}],"name":"??107"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":253,"TEXCOORD_0":255,"NORMAL":254}}],"name":"??108"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":256,"TEXCOORD_0":258,"NORMAL":257}}],"name":"??110"},{"primitives":[{"mode":4,"indices":20,"material":7,"attributes":{"POSITION":259,"TEXCOORD_0":261,"NORMAL":260}}],"name":"??111"},{"primitives":[{"mode":4,"indices":11,"material":3,"attributes":{"POSITION":262,"TEXCOORD_0":264,"NORMAL":263}}],"name":"Box016"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":265,"NORMAL":266}}],"name":"Circle035"},{"primitives":[{"mode":4,"indices":9,"material":1,"attributes":{"POSITION":267,"NORMAL":268}}],"name":"Circle036"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":269,"TEXCOORD_0":271,"NORMAL":270}}],"name":"Cylinder042"},{"primitives":[{"mode":4,"indices":22,"material":3,"attributes":{"POSITION":272,"TEXCOORD_0":274,"NORMAL":273}}],"name":"Cylinder043"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":275,"NORMAL":276}}],"name":"Line016"},{"primitives":[{"mode":4,"indices":23,"material":2,"attributes":{"POSITION":277,"NORMAL":278}}],"name":"Line017"},{"primitives":[{"mode":4,"indices":21,"material":7,"attributes":{"POSITION":279,"NORMAL":280}}],"name":"??109"}]}
@@ -0,0 +1,51 @@
1
+ <!doctype html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Cesium 漫游测试导航</title>
7
+ <style>
8
+ body {
9
+ font-family: system-ui, -apple-system, sans-serif;
10
+ background-color: #1a1a1a;
11
+ color: #e0e0e0;
12
+ display: flex;
13
+ flex-direction: column;
14
+ align-items: center;
15
+ justify-content: center;
16
+ height: 100vh;
17
+ margin: 0;
18
+ }
19
+ h1 {
20
+ margin-bottom: 2rem;
21
+ }
22
+ .nav-links {
23
+ display: flex;
24
+ gap: 20px;
25
+ }
26
+ a {
27
+ display: block;
28
+ padding: 20px 40px;
29
+ background-color: #333;
30
+ color: #fff;
31
+ text-decoration: none;
32
+ border-radius: 8px;
33
+ border: 1px solid #444;
34
+ transition: all 0.2s;
35
+ font-size: 1.2rem;
36
+ }
37
+ a:hover {
38
+ background-color: #444;
39
+ border-color: #3b82f6;
40
+ transform: translateY(-2px);
41
+ }
42
+ </style>
43
+ </head>
44
+ <body>
45
+ <h1>Cesium 漫游测试</h1>
46
+ <div class="nav-links">
47
+ <a href="/src/test/roaming/view.html">📷 视点漫游测试</a>
48
+ <a href="/src/test/roaming/path.html">🛤️ 路径漫游测试</a>
49
+ </div>
50
+ </body>
51
+ </html>