@reearth/core 0.0.7-alpha.5 → 0.0.7-alpha.50

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 (480) hide show
  1. package/dist/core.js +58676 -51066
  2. package/dist/core.umd.cjs +3959 -3915
  3. package/dist/{index-DqatWUTw.js → index-DqGWVPtz.js} +0 -1
  4. package/dist/index.d.ts +150 -34
  5. package/package.json +55 -39
  6. package/src/Map/ClusteredLayers/index.tsx +1 -1
  7. package/src/Map/Geoid/index.tsx +68 -0
  8. package/src/Map/Geoid/types.ts +8 -0
  9. package/src/Map/Layer/hooks.ts +7 -4
  10. package/src/Map/Layer/index.tsx +3 -1
  11. package/src/Map/Layers/hooks.ts +19 -2
  12. package/src/Map/Layers/index.tsx +13 -2
  13. package/src/Map/Layers/keys.ts +1 -0
  14. package/src/Map/Sketch/hooks.ts +453 -410
  15. package/src/Map/Sketch/index.tsx +67 -20
  16. package/src/Map/Sketch/sketchMachine.ts +359 -4
  17. package/src/Map/Sketch/sketchMachine.typegen.ts +58 -1
  18. package/src/Map/Sketch/types.ts +10 -20
  19. package/src/Map/Sketch/usePluginSketchLayer.ts +105 -0
  20. package/src/Map/Sketch/useSketch.ts +559 -0
  21. package/src/Map/Sketch/useSketchFeature.ts +198 -0
  22. package/src/Map/SpatialId/constants.ts +21 -0
  23. package/src/Map/SpatialId/hooks.ts +448 -0
  24. package/src/Map/SpatialId/index.tsx +63 -0
  25. package/src/Map/SpatialId/types.ts +68 -0
  26. package/src/Map/SpatialId/utils.ts +65 -0
  27. package/src/Map/hooks.ts +54 -8
  28. package/src/Map/index.tsx +41 -8
  29. package/src/Map/ref.ts +32 -3
  30. package/src/Map/types/index.ts +39 -3
  31. package/src/Map/types/viewerProperty.ts +10 -0
  32. package/src/Map/useTimelineManager.ts +2 -2
  33. package/src/Map/utils.ts +1 -1
  34. package/src/Visualizer/context.tsx +5 -5
  35. package/src/Visualizer/coreContext.tsx +2 -0
  36. package/src/Visualizer/hooks.ts +54 -20
  37. package/src/Visualizer/index.tsx +22 -3
  38. package/src/Visualizer/interactionMode.ts +2 -1
  39. package/src/Visualizer/useViewport.ts +1 -1
  40. package/src/engines/Cesium/Feature/Box/hooks/box.ts +4 -4
  41. package/src/engines/Cesium/Feature/HeatMap/HeatmapMesh.tsx +1 -1
  42. package/src/engines/Cesium/Feature/Model/index.tsx +3 -3
  43. package/src/engines/Cesium/Feature/PhotoOverlay/hooks.ts +1 -1
  44. package/src/engines/Cesium/Feature/PhotoOverlay/index.tsx +3 -1
  45. package/src/engines/Cesium/Feature/Polygon/index.tsx +6 -4
  46. package/src/engines/Cesium/Feature/Raster/mvt.ts +2 -1
  47. package/src/engines/Cesium/Feature/Resource/utils.ts +86 -91
  48. package/src/engines/Cesium/Feature/Tileset/hooks.ts +135 -70
  49. package/src/engines/Cesium/Feature/Tileset/index.tsx +1 -1
  50. package/src/engines/Cesium/Feature/Tileset/useClippingBox.ts +2 -2
  51. package/src/engines/Cesium/Feature/context.ts +1 -0
  52. package/src/engines/Cesium/Feature/index.tsx +7 -3
  53. package/src/engines/Cesium/Feature/utils.tsx +18 -7
  54. package/src/engines/Cesium/Shaders/OverriddenShaders/GlobeFS/IBL.glsl +6 -10
  55. package/src/engines/Cesium/Sketch/ControlPoint.tsx +128 -24
  56. package/src/engines/Cesium/Sketch/ExtrudedControlPoints.tsx +70 -25
  57. package/src/engines/Cesium/Sketch/ExtrudedMeasurement.tsx +3 -1
  58. package/src/engines/Cesium/Sketch/ExtrudedPolygonEntity.tsx +14 -14
  59. package/src/engines/Cesium/Sketch/PolylineEntity.tsx +7 -4
  60. package/src/engines/Cesium/Sketch/SurfaceAddingPoints.tsx +60 -0
  61. package/src/engines/Cesium/Sketch/SurfaceControlPoints.tsx +125 -35
  62. package/src/engines/Cesium/Sketch/constants.ts +5 -0
  63. package/src/engines/Cesium/Sketch/index.tsx +68 -29
  64. package/src/engines/Cesium/SpatialId/CoordinateIndicator.tsx +28 -0
  65. package/src/engines/Cesium/SpatialId/SpatialIdSpace.tsx +33 -0
  66. package/src/engines/Cesium/SpatialId/VerticalSpaceIndicator.tsx +32 -0
  67. package/src/engines/Cesium/SpatialId/index.ts +3 -0
  68. package/src/engines/Cesium/common.ts +52 -16
  69. package/src/engines/Cesium/core/Clock.tsx +1 -1
  70. package/src/engines/Cesium/core/Globe/index.tsx +73 -0
  71. package/src/engines/Cesium/core/Globe/useTerrainProviderPromise.ts +79 -0
  72. package/src/engines/Cesium/core/Imagery.test.ts +29 -11
  73. package/src/engines/Cesium/core/Imagery.tsx +22 -6
  74. package/src/engines/Cesium/core/Indicator/Indicator.tsx +1 -1
  75. package/src/engines/Cesium/core/labels/JapanGSIOptimalBVmapVectorMapLabel/JapanGSIOptimalBVmapLabelImagery.tsx +9 -2
  76. package/src/engines/Cesium/core/labels/JapanGSIOptimalBVmapVectorMapLabel/JapanGSIOptimalBVmapVectorMapLabel.tsx +14 -2
  77. package/src/engines/Cesium/core/labels/LabelImageryLayers.tsx +10 -1
  78. package/src/engines/Cesium/core/presets.ts +24 -28
  79. package/src/engines/Cesium/helpers/getGeometryFromEntity.ts +55 -0
  80. package/src/engines/Cesium/hooks/useCamera.ts +1 -1
  81. package/src/engines/Cesium/hooks/useCameraLimiter.ts +1 -1
  82. package/src/engines/Cesium/hooks/useEngineRef.ts +48 -3
  83. package/src/engines/Cesium/hooks/useExplicitRender.ts +2 -2
  84. package/src/engines/Cesium/hooks/useInstance.ts +1 -1
  85. package/src/engines/Cesium/hooks/useLayerDragDrop.ts +2 -2
  86. package/src/engines/Cesium/hooks/useLayerSelectWithRect.ts +1 -1
  87. package/src/engines/Cesium/hooks/useOverrideGlobeShader/useOverrideGlobeShader.ts +98 -52
  88. package/src/engines/Cesium/hooks/useViewerProperty.ts +1 -1
  89. package/src/engines/Cesium/hooks.ts +52 -10
  90. package/src/engines/Cesium/index.tsx +16 -3
  91. package/src/engines/Cesium/types.ts +1 -1
  92. package/src/mantle/atoms/compute.ts +8 -3
  93. package/src/mantle/data/geojson.ts +53 -22
  94. package/src/mantle/data/shapefile/parseZip.ts +1 -0
  95. package/src/mantle/evaluator/simple/expression/expression.test.ts +72 -0
  96. package/src/mantle/evaluator/simple/expression/node.ts +10 -12
  97. package/src/mantle/types/appearance.ts +4 -2
  98. package/src/mantle/types/index.ts +3 -0
  99. package/src/test/utils.tsx +1 -1
  100. package/src/utils/image.ts +2 -12
  101. package/src/utils/use-delayed-count.ts +1 -1
  102. package/src/utils/use-dnd/drop.ts +1 -1
  103. package/src/utils/util.ts +1 -1
  104. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_0.json +0 -1
  105. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_1.json +0 -1
  106. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_10.json +0 -1
  107. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_11.json +0 -1
  108. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_12.json +0 -1
  109. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_13.json +0 -1
  110. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_14.json +0 -1
  111. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_15.json +0 -1
  112. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_16.json +0 -1
  113. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_17.json +0 -1
  114. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_18.json +0 -1
  115. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_19.json +0 -1
  116. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_2.json +0 -1
  117. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_20.json +0 -1
  118. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_21.json +0 -1
  119. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_22.json +0 -1
  120. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_23.json +0 -1
  121. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_24.json +0 -1
  122. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_25.json +0 -1
  123. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_26.json +0 -1
  124. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_27.json +0 -1
  125. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_3.json +0 -1
  126. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_4.json +0 -1
  127. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_5.json +0 -1
  128. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_6.json +0 -1
  129. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_7.json +0 -1
  130. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_8.json +0 -1
  131. package/dist/cesium/Assets/IAU2006_XYS/IAU2006_XYS_9.json +0 -1
  132. package/dist/cesium/Assets/Images/bing_maps_credit.png +0 -0
  133. package/dist/cesium/Assets/Images/cesium_credit.png +0 -0
  134. package/dist/cesium/Assets/Images/google_earth_credit.png +0 -0
  135. package/dist/cesium/Assets/Images/ion-credit.png +0 -0
  136. package/dist/cesium/Assets/Textures/LensFlare/DirtMask.jpg +0 -0
  137. package/dist/cesium/Assets/Textures/LensFlare/StarBurst.jpg +0 -0
  138. package/dist/cesium/Assets/Textures/NaturalEarthII/0/0/0.jpg +0 -0
  139. package/dist/cesium/Assets/Textures/NaturalEarthII/0/1/0.jpg +0 -0
  140. package/dist/cesium/Assets/Textures/NaturalEarthII/1/0/0.jpg +0 -0
  141. package/dist/cesium/Assets/Textures/NaturalEarthII/1/0/1.jpg +0 -0
  142. package/dist/cesium/Assets/Textures/NaturalEarthII/1/1/0.jpg +0 -0
  143. package/dist/cesium/Assets/Textures/NaturalEarthII/1/1/1.jpg +0 -0
  144. package/dist/cesium/Assets/Textures/NaturalEarthII/1/2/0.jpg +0 -0
  145. package/dist/cesium/Assets/Textures/NaturalEarthII/1/2/1.jpg +0 -0
  146. package/dist/cesium/Assets/Textures/NaturalEarthII/1/3/0.jpg +0 -0
  147. package/dist/cesium/Assets/Textures/NaturalEarthII/1/3/1.jpg +0 -0
  148. package/dist/cesium/Assets/Textures/NaturalEarthII/2/0/0.jpg +0 -0
  149. package/dist/cesium/Assets/Textures/NaturalEarthII/2/0/1.jpg +0 -0
  150. package/dist/cesium/Assets/Textures/NaturalEarthII/2/0/2.jpg +0 -0
  151. package/dist/cesium/Assets/Textures/NaturalEarthII/2/0/3.jpg +0 -0
  152. package/dist/cesium/Assets/Textures/NaturalEarthII/2/1/0.jpg +0 -0
  153. package/dist/cesium/Assets/Textures/NaturalEarthII/2/1/1.jpg +0 -0
  154. package/dist/cesium/Assets/Textures/NaturalEarthII/2/1/2.jpg +0 -0
  155. package/dist/cesium/Assets/Textures/NaturalEarthII/2/1/3.jpg +0 -0
  156. package/dist/cesium/Assets/Textures/NaturalEarthII/2/2/0.jpg +0 -0
  157. package/dist/cesium/Assets/Textures/NaturalEarthII/2/2/1.jpg +0 -0
  158. package/dist/cesium/Assets/Textures/NaturalEarthII/2/2/2.jpg +0 -0
  159. package/dist/cesium/Assets/Textures/NaturalEarthII/2/2/3.jpg +0 -0
  160. package/dist/cesium/Assets/Textures/NaturalEarthII/2/3/0.jpg +0 -0
  161. package/dist/cesium/Assets/Textures/NaturalEarthII/2/3/1.jpg +0 -0
  162. package/dist/cesium/Assets/Textures/NaturalEarthII/2/3/2.jpg +0 -0
  163. package/dist/cesium/Assets/Textures/NaturalEarthII/2/3/3.jpg +0 -0
  164. package/dist/cesium/Assets/Textures/NaturalEarthII/2/4/0.jpg +0 -0
  165. package/dist/cesium/Assets/Textures/NaturalEarthII/2/4/1.jpg +0 -0
  166. package/dist/cesium/Assets/Textures/NaturalEarthII/2/4/2.jpg +0 -0
  167. package/dist/cesium/Assets/Textures/NaturalEarthII/2/4/3.jpg +0 -0
  168. package/dist/cesium/Assets/Textures/NaturalEarthII/2/5/0.jpg +0 -0
  169. package/dist/cesium/Assets/Textures/NaturalEarthII/2/5/1.jpg +0 -0
  170. package/dist/cesium/Assets/Textures/NaturalEarthII/2/5/2.jpg +0 -0
  171. package/dist/cesium/Assets/Textures/NaturalEarthII/2/5/3.jpg +0 -0
  172. package/dist/cesium/Assets/Textures/NaturalEarthII/2/6/0.jpg +0 -0
  173. package/dist/cesium/Assets/Textures/NaturalEarthII/2/6/1.jpg +0 -0
  174. package/dist/cesium/Assets/Textures/NaturalEarthII/2/6/2.jpg +0 -0
  175. package/dist/cesium/Assets/Textures/NaturalEarthII/2/6/3.jpg +0 -0
  176. package/dist/cesium/Assets/Textures/NaturalEarthII/2/7/0.jpg +0 -0
  177. package/dist/cesium/Assets/Textures/NaturalEarthII/2/7/1.jpg +0 -0
  178. package/dist/cesium/Assets/Textures/NaturalEarthII/2/7/2.jpg +0 -0
  179. package/dist/cesium/Assets/Textures/NaturalEarthII/2/7/3.jpg +0 -0
  180. package/dist/cesium/Assets/Textures/NaturalEarthII/tilemapresource.xml +0 -14
  181. package/dist/cesium/Assets/Textures/SkyBox/tycho2t3_80_mx.jpg +0 -0
  182. package/dist/cesium/Assets/Textures/SkyBox/tycho2t3_80_my.jpg +0 -0
  183. package/dist/cesium/Assets/Textures/SkyBox/tycho2t3_80_mz.jpg +0 -0
  184. package/dist/cesium/Assets/Textures/SkyBox/tycho2t3_80_px.jpg +0 -0
  185. package/dist/cesium/Assets/Textures/SkyBox/tycho2t3_80_py.jpg +0 -0
  186. package/dist/cesium/Assets/Textures/SkyBox/tycho2t3_80_pz.jpg +0 -0
  187. package/dist/cesium/Assets/Textures/maki/airfield.png +0 -0
  188. package/dist/cesium/Assets/Textures/maki/airport.png +0 -0
  189. package/dist/cesium/Assets/Textures/maki/alcohol-shop.png +0 -0
  190. package/dist/cesium/Assets/Textures/maki/america-football.png +0 -0
  191. package/dist/cesium/Assets/Textures/maki/art-gallery.png +0 -0
  192. package/dist/cesium/Assets/Textures/maki/bakery.png +0 -0
  193. package/dist/cesium/Assets/Textures/maki/bank.png +0 -0
  194. package/dist/cesium/Assets/Textures/maki/bar.png +0 -0
  195. package/dist/cesium/Assets/Textures/maki/baseball.png +0 -0
  196. package/dist/cesium/Assets/Textures/maki/basketball.png +0 -0
  197. package/dist/cesium/Assets/Textures/maki/beer.png +0 -0
  198. package/dist/cesium/Assets/Textures/maki/bicycle.png +0 -0
  199. package/dist/cesium/Assets/Textures/maki/building.png +0 -0
  200. package/dist/cesium/Assets/Textures/maki/bus.png +0 -0
  201. package/dist/cesium/Assets/Textures/maki/cafe.png +0 -0
  202. package/dist/cesium/Assets/Textures/maki/camera.png +0 -0
  203. package/dist/cesium/Assets/Textures/maki/campsite.png +0 -0
  204. package/dist/cesium/Assets/Textures/maki/car.png +0 -0
  205. package/dist/cesium/Assets/Textures/maki/cemetery.png +0 -0
  206. package/dist/cesium/Assets/Textures/maki/cesium.png +0 -0
  207. package/dist/cesium/Assets/Textures/maki/chemist.png +0 -0
  208. package/dist/cesium/Assets/Textures/maki/cinema.png +0 -0
  209. package/dist/cesium/Assets/Textures/maki/circle-stroked.png +0 -0
  210. package/dist/cesium/Assets/Textures/maki/circle.png +0 -0
  211. package/dist/cesium/Assets/Textures/maki/city.png +0 -0
  212. package/dist/cesium/Assets/Textures/maki/clothing-store.png +0 -0
  213. package/dist/cesium/Assets/Textures/maki/college.png +0 -0
  214. package/dist/cesium/Assets/Textures/maki/commercial.png +0 -0
  215. package/dist/cesium/Assets/Textures/maki/cricket.png +0 -0
  216. package/dist/cesium/Assets/Textures/maki/cross.png +0 -0
  217. package/dist/cesium/Assets/Textures/maki/dam.png +0 -0
  218. package/dist/cesium/Assets/Textures/maki/danger.png +0 -0
  219. package/dist/cesium/Assets/Textures/maki/disability.png +0 -0
  220. package/dist/cesium/Assets/Textures/maki/dog-park.png +0 -0
  221. package/dist/cesium/Assets/Textures/maki/embassy.png +0 -0
  222. package/dist/cesium/Assets/Textures/maki/emergency-telephone.png +0 -0
  223. package/dist/cesium/Assets/Textures/maki/entrance.png +0 -0
  224. package/dist/cesium/Assets/Textures/maki/farm.png +0 -0
  225. package/dist/cesium/Assets/Textures/maki/fast-food.png +0 -0
  226. package/dist/cesium/Assets/Textures/maki/ferry.png +0 -0
  227. package/dist/cesium/Assets/Textures/maki/fire-station.png +0 -0
  228. package/dist/cesium/Assets/Textures/maki/fuel.png +0 -0
  229. package/dist/cesium/Assets/Textures/maki/garden.png +0 -0
  230. package/dist/cesium/Assets/Textures/maki/gift.png +0 -0
  231. package/dist/cesium/Assets/Textures/maki/golf.png +0 -0
  232. package/dist/cesium/Assets/Textures/maki/grocery.png +0 -0
  233. package/dist/cesium/Assets/Textures/maki/hairdresser.png +0 -0
  234. package/dist/cesium/Assets/Textures/maki/harbor.png +0 -0
  235. package/dist/cesium/Assets/Textures/maki/heart.png +0 -0
  236. package/dist/cesium/Assets/Textures/maki/heliport.png +0 -0
  237. package/dist/cesium/Assets/Textures/maki/hospital.png +0 -0
  238. package/dist/cesium/Assets/Textures/maki/ice-cream.png +0 -0
  239. package/dist/cesium/Assets/Textures/maki/industrial.png +0 -0
  240. package/dist/cesium/Assets/Textures/maki/land-use.png +0 -0
  241. package/dist/cesium/Assets/Textures/maki/laundry.png +0 -0
  242. package/dist/cesium/Assets/Textures/maki/library.png +0 -0
  243. package/dist/cesium/Assets/Textures/maki/lighthouse.png +0 -0
  244. package/dist/cesium/Assets/Textures/maki/lodging.png +0 -0
  245. package/dist/cesium/Assets/Textures/maki/logging.png +0 -0
  246. package/dist/cesium/Assets/Textures/maki/london-underground.png +0 -0
  247. package/dist/cesium/Assets/Textures/maki/marker-stroked.png +0 -0
  248. package/dist/cesium/Assets/Textures/maki/marker.png +0 -0
  249. package/dist/cesium/Assets/Textures/maki/minefield.png +0 -0
  250. package/dist/cesium/Assets/Textures/maki/mobilephone.png +0 -0
  251. package/dist/cesium/Assets/Textures/maki/monument.png +0 -0
  252. package/dist/cesium/Assets/Textures/maki/museum.png +0 -0
  253. package/dist/cesium/Assets/Textures/maki/music.png +0 -0
  254. package/dist/cesium/Assets/Textures/maki/oil-well.png +0 -0
  255. package/dist/cesium/Assets/Textures/maki/park.png +0 -0
  256. package/dist/cesium/Assets/Textures/maki/park2.png +0 -0
  257. package/dist/cesium/Assets/Textures/maki/parking-garage.png +0 -0
  258. package/dist/cesium/Assets/Textures/maki/parking.png +0 -0
  259. package/dist/cesium/Assets/Textures/maki/pharmacy.png +0 -0
  260. package/dist/cesium/Assets/Textures/maki/pitch.png +0 -0
  261. package/dist/cesium/Assets/Textures/maki/place-of-worship.png +0 -0
  262. package/dist/cesium/Assets/Textures/maki/playground.png +0 -0
  263. package/dist/cesium/Assets/Textures/maki/police.png +0 -0
  264. package/dist/cesium/Assets/Textures/maki/polling-place.png +0 -0
  265. package/dist/cesium/Assets/Textures/maki/post.png +0 -0
  266. package/dist/cesium/Assets/Textures/maki/prison.png +0 -0
  267. package/dist/cesium/Assets/Textures/maki/rail-above.png +0 -0
  268. package/dist/cesium/Assets/Textures/maki/rail-light.png +0 -0
  269. package/dist/cesium/Assets/Textures/maki/rail-metro.png +0 -0
  270. package/dist/cesium/Assets/Textures/maki/rail-underground.png +0 -0
  271. package/dist/cesium/Assets/Textures/maki/rail.png +0 -0
  272. package/dist/cesium/Assets/Textures/maki/religious-christian.png +0 -0
  273. package/dist/cesium/Assets/Textures/maki/religious-jewish.png +0 -0
  274. package/dist/cesium/Assets/Textures/maki/religious-muslim.png +0 -0
  275. package/dist/cesium/Assets/Textures/maki/restaurant.png +0 -0
  276. package/dist/cesium/Assets/Textures/maki/roadblock.png +0 -0
  277. package/dist/cesium/Assets/Textures/maki/rocket.png +0 -0
  278. package/dist/cesium/Assets/Textures/maki/school.png +0 -0
  279. package/dist/cesium/Assets/Textures/maki/scooter.png +0 -0
  280. package/dist/cesium/Assets/Textures/maki/shop.png +0 -0
  281. package/dist/cesium/Assets/Textures/maki/skiing.png +0 -0
  282. package/dist/cesium/Assets/Textures/maki/slaughterhouse.png +0 -0
  283. package/dist/cesium/Assets/Textures/maki/soccer.png +0 -0
  284. package/dist/cesium/Assets/Textures/maki/square-stroked.png +0 -0
  285. package/dist/cesium/Assets/Textures/maki/square.png +0 -0
  286. package/dist/cesium/Assets/Textures/maki/star-stroked.png +0 -0
  287. package/dist/cesium/Assets/Textures/maki/star.png +0 -0
  288. package/dist/cesium/Assets/Textures/maki/suitcase.png +0 -0
  289. package/dist/cesium/Assets/Textures/maki/swimming.png +0 -0
  290. package/dist/cesium/Assets/Textures/maki/telephone.png +0 -0
  291. package/dist/cesium/Assets/Textures/maki/tennis.png +0 -0
  292. package/dist/cesium/Assets/Textures/maki/theatre.png +0 -0
  293. package/dist/cesium/Assets/Textures/maki/toilets.png +0 -0
  294. package/dist/cesium/Assets/Textures/maki/town-hall.png +0 -0
  295. package/dist/cesium/Assets/Textures/maki/town.png +0 -0
  296. package/dist/cesium/Assets/Textures/maki/triangle-stroked.png +0 -0
  297. package/dist/cesium/Assets/Textures/maki/triangle.png +0 -0
  298. package/dist/cesium/Assets/Textures/maki/village.png +0 -0
  299. package/dist/cesium/Assets/Textures/maki/warehouse.png +0 -0
  300. package/dist/cesium/Assets/Textures/maki/waste-basket.png +0 -0
  301. package/dist/cesium/Assets/Textures/maki/water.png +0 -0
  302. package/dist/cesium/Assets/Textures/maki/wetland.png +0 -0
  303. package/dist/cesium/Assets/Textures/maki/zoo.png +0 -0
  304. package/dist/cesium/Assets/Textures/moonSmall.jpg +0 -0
  305. package/dist/cesium/Assets/Textures/pin.svg +0 -1
  306. package/dist/cesium/Assets/Textures/waterNormals.jpg +0 -0
  307. package/dist/cesium/Assets/Textures/waterNormalsSmall.jpg +0 -0
  308. package/dist/cesium/Assets/approximateTerrainHeights.json +0 -1
  309. package/dist/cesium/ThirdParty/Workers/package.json +0 -1
  310. package/dist/cesium/ThirdParty/Workers/pako_deflate.min.js +0 -1
  311. package/dist/cesium/ThirdParty/Workers/pako_inflate.min.js +0 -1
  312. package/dist/cesium/ThirdParty/Workers/z-worker-pako.js +0 -1
  313. package/dist/cesium/ThirdParty/basis_transcoder.wasm +0 -0
  314. package/dist/cesium/ThirdParty/draco_decoder.wasm +0 -0
  315. package/dist/cesium/ThirdParty/google-earth-dbroot-parser.js +0 -1
  316. package/dist/cesium/Widgets/Animation/Animation.css +0 -127
  317. package/dist/cesium/Widgets/Animation/lighter.css +0 -70
  318. package/dist/cesium/Widgets/BaseLayerPicker/BaseLayerPicker.css +0 -108
  319. package/dist/cesium/Widgets/BaseLayerPicker/lighter.css +0 -22
  320. package/dist/cesium/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspector.css +0 -102
  321. package/dist/cesium/Widgets/CesiumInspector/CesiumInspector.css +0 -113
  322. package/dist/cesium/Widgets/CesiumWidget/CesiumWidget.css +0 -124
  323. package/dist/cesium/Widgets/CesiumWidget/lighter.css +0 -14
  324. package/dist/cesium/Widgets/FullscreenButton/FullscreenButton.css +0 -8
  325. package/dist/cesium/Widgets/Geocoder/Geocoder.css +0 -70
  326. package/dist/cesium/Widgets/Geocoder/lighter.css +0 -17
  327. package/dist/cesium/Widgets/I3SBuildingSceneLayerExplorer/I3SBuildingSceneLayerExplorer.css +0 -27
  328. package/dist/cesium/Widgets/Images/ImageryProviders/ArcGisMapServiceWorldHillshade.png +0 -0
  329. package/dist/cesium/Widgets/Images/ImageryProviders/ArcGisMapServiceWorldImagery.png +0 -0
  330. package/dist/cesium/Widgets/Images/ImageryProviders/ArcGisMapServiceWorldOcean.png +0 -0
  331. package/dist/cesium/Widgets/Images/ImageryProviders/bingAerial.png +0 -0
  332. package/dist/cesium/Widgets/Images/ImageryProviders/bingAerialLabels.png +0 -0
  333. package/dist/cesium/Widgets/Images/ImageryProviders/bingRoads.png +0 -0
  334. package/dist/cesium/Widgets/Images/ImageryProviders/blueMarble.png +0 -0
  335. package/dist/cesium/Widgets/Images/ImageryProviders/earthAtNight.png +0 -0
  336. package/dist/cesium/Widgets/Images/ImageryProviders/mapQuestOpenStreetMap.png +0 -0
  337. package/dist/cesium/Widgets/Images/ImageryProviders/mapboxSatellite.png +0 -0
  338. package/dist/cesium/Widgets/Images/ImageryProviders/mapboxStreets.png +0 -0
  339. package/dist/cesium/Widgets/Images/ImageryProviders/mapboxTerrain.png +0 -0
  340. package/dist/cesium/Widgets/Images/ImageryProviders/naturalEarthII.png +0 -0
  341. package/dist/cesium/Widgets/Images/ImageryProviders/openStreetMap.png +0 -0
  342. package/dist/cesium/Widgets/Images/ImageryProviders/sentinel-2.png +0 -0
  343. package/dist/cesium/Widgets/Images/ImageryProviders/stadiaAlidadeSmooth.png +0 -0
  344. package/dist/cesium/Widgets/Images/ImageryProviders/stadiaAlidadeSmoothDark.png +0 -0
  345. package/dist/cesium/Widgets/Images/ImageryProviders/stamenToner.png +0 -0
  346. package/dist/cesium/Widgets/Images/ImageryProviders/stamenWatercolor.png +0 -0
  347. package/dist/cesium/Widgets/Images/NavigationHelp/Mouse.svg +0 -84
  348. package/dist/cesium/Widgets/Images/NavigationHelp/MouseLeft.svg +0 -76
  349. package/dist/cesium/Widgets/Images/NavigationHelp/MouseMiddle.svg +0 -76
  350. package/dist/cesium/Widgets/Images/NavigationHelp/MouseRight.svg +0 -76
  351. package/dist/cesium/Widgets/Images/NavigationHelp/Touch.svg +0 -120
  352. package/dist/cesium/Widgets/Images/NavigationHelp/TouchDrag.svg +0 -129
  353. package/dist/cesium/Widgets/Images/NavigationHelp/TouchRotate.svg +0 -76
  354. package/dist/cesium/Widgets/Images/NavigationHelp/TouchTilt.svg +0 -135
  355. package/dist/cesium/Widgets/Images/NavigationHelp/TouchZoom.svg +0 -74
  356. package/dist/cesium/Widgets/Images/TerrainProviders/CesiumWorldTerrain.png +0 -0
  357. package/dist/cesium/Widgets/Images/TerrainProviders/Ellipsoid.png +0 -0
  358. package/dist/cesium/Widgets/Images/TimelineIcons.png +0 -0
  359. package/dist/cesium/Widgets/Images/info-loading.gif +0 -0
  360. package/dist/cesium/Widgets/InfoBox/InfoBox.css +0 -92
  361. package/dist/cesium/Widgets/InfoBox/InfoBoxDescription.css +0 -178
  362. package/dist/cesium/Widgets/NavigationHelpButton/NavigationHelpButton.css +0 -93
  363. package/dist/cesium/Widgets/NavigationHelpButton/lighter.css +0 -38
  364. package/dist/cesium/Widgets/PerformanceWatchdog/PerformanceWatchdog.css +0 -15
  365. package/dist/cesium/Widgets/ProjectionPicker/ProjectionPicker.css +0 -38
  366. package/dist/cesium/Widgets/SceneModePicker/SceneModePicker.css +0 -56
  367. package/dist/cesium/Widgets/SelectionIndicator/SelectionIndicator.css +0 -20
  368. package/dist/cesium/Widgets/Timeline/Timeline.css +0 -103
  369. package/dist/cesium/Widgets/Timeline/lighter.css +0 -23
  370. package/dist/cesium/Widgets/VRButton/VRButton.css +0 -8
  371. package/dist/cesium/Widgets/Viewer/Viewer.css +0 -107
  372. package/dist/cesium/Widgets/VoxelInspector/VoxelInspector.css +0 -16
  373. package/dist/cesium/Widgets/lighter.css +0 -237
  374. package/dist/cesium/Widgets/lighterShared.css +0 -46
  375. package/dist/cesium/Widgets/shared.css +0 -103
  376. package/dist/cesium/Widgets/widgets.css +0 -1346
  377. package/dist/cesium/Workers/chunk-2ED5WI77.js +0 -26
  378. package/dist/cesium/Workers/chunk-2MBPFWCP.js +0 -26
  379. package/dist/cesium/Workers/chunk-3C74MLG3.js +0 -26
  380. package/dist/cesium/Workers/chunk-45U7TTT3.js +0 -26
  381. package/dist/cesium/Workers/chunk-4N7SRDH5.js +0 -26
  382. package/dist/cesium/Workers/chunk-4T6AS6BZ.js +0 -26
  383. package/dist/cesium/Workers/chunk-5AG2MVRM.js +0 -26
  384. package/dist/cesium/Workers/chunk-5Z6L2FHX.js +0 -26
  385. package/dist/cesium/Workers/chunk-6AUUBDOF.js +0 -26
  386. package/dist/cesium/Workers/chunk-74N6MC2V.js +0 -26
  387. package/dist/cesium/Workers/chunk-7VJK3KHI.js +0 -26
  388. package/dist/cesium/Workers/chunk-7VZHIB6P.js +0 -26
  389. package/dist/cesium/Workers/chunk-7X2YQ6I4.js +0 -27
  390. package/dist/cesium/Workers/chunk-B2SKQ7LU.js +0 -26
  391. package/dist/cesium/Workers/chunk-B4TQDFIE.js +0 -26
  392. package/dist/cesium/Workers/chunk-B6TRTFAA.js +0 -26
  393. package/dist/cesium/Workers/chunk-BK3HCS7I.js +0 -26
  394. package/dist/cesium/Workers/chunk-BOPB43LN.js +0 -26
  395. package/dist/cesium/Workers/chunk-C6DMEJQ7.js +0 -26
  396. package/dist/cesium/Workers/chunk-CN7UN2OZ.js +0 -26
  397. package/dist/cesium/Workers/chunk-CSISXEG7.js +0 -26
  398. package/dist/cesium/Workers/chunk-CUOR5F7T.js +0 -28
  399. package/dist/cesium/Workers/chunk-DGCK3LD2.js +0 -30
  400. package/dist/cesium/Workers/chunk-DXEZYE3K.js +0 -62
  401. package/dist/cesium/Workers/chunk-EXBFEYPQ.js +0 -26
  402. package/dist/cesium/Workers/chunk-FK5KFB6H.js +0 -26
  403. package/dist/cesium/Workers/chunk-HPBHKP5S.js +0 -26
  404. package/dist/cesium/Workers/chunk-JCJ24DHF.js +0 -26
  405. package/dist/cesium/Workers/chunk-JEWHFDAA.js +0 -26
  406. package/dist/cesium/Workers/chunk-JZLZJJQD.js +0 -26
  407. package/dist/cesium/Workers/chunk-KRZBI2MU.js +0 -26
  408. package/dist/cesium/Workers/chunk-KTTUANTJ.js +0 -26
  409. package/dist/cesium/Workers/chunk-LDCAXLGS.js +0 -26
  410. package/dist/cesium/Workers/chunk-LOPN5R3I.js +0 -26
  411. package/dist/cesium/Workers/chunk-MDLPQIMP.js +0 -26
  412. package/dist/cesium/Workers/chunk-MRR3RGFO.js +0 -26
  413. package/dist/cesium/Workers/chunk-NPBZI5YA.js +0 -26
  414. package/dist/cesium/Workers/chunk-NUSW5B6A.js +0 -26
  415. package/dist/cesium/Workers/chunk-OUXRUXNB.js +0 -26
  416. package/dist/cesium/Workers/chunk-QPOPEH3M.js +0 -26
  417. package/dist/cesium/Workers/chunk-R2AN7EKC.js +0 -26
  418. package/dist/cesium/Workers/chunk-RURL6ZX2.js +0 -26
  419. package/dist/cesium/Workers/chunk-SUQM3OSW.js +0 -28
  420. package/dist/cesium/Workers/chunk-UBIRX2SP.js +0 -26
  421. package/dist/cesium/Workers/chunk-VAKC5J5C.js +0 -26
  422. package/dist/cesium/Workers/chunk-VHNZBQTR.js +0 -27
  423. package/dist/cesium/Workers/chunk-VKV642QV.js +0 -26
  424. package/dist/cesium/Workers/chunk-VMSXG4OA.js +0 -26
  425. package/dist/cesium/Workers/chunk-VQZSIOZW.js +0 -26
  426. package/dist/cesium/Workers/chunk-WZUWQMI7.js +0 -26
  427. package/dist/cesium/Workers/chunk-YBI55DLZ.js +0 -26
  428. package/dist/cesium/Workers/chunk-YEJWCH6C.js +0 -26
  429. package/dist/cesium/Workers/chunk-YPDO7SPO.js +0 -26
  430. package/dist/cesium/Workers/chunk-ZYWD6OQH.js +0 -26
  431. package/dist/cesium/Workers/combineGeometry.js +0 -26
  432. package/dist/cesium/Workers/createBoxGeometry.js +0 -26
  433. package/dist/cesium/Workers/createBoxOutlineGeometry.js +0 -26
  434. package/dist/cesium/Workers/createCircleGeometry.js +0 -26
  435. package/dist/cesium/Workers/createCircleOutlineGeometry.js +0 -26
  436. package/dist/cesium/Workers/createCoplanarPolygonGeometry.js +0 -26
  437. package/dist/cesium/Workers/createCoplanarPolygonOutlineGeometry.js +0 -26
  438. package/dist/cesium/Workers/createCorridorGeometry.js +0 -26
  439. package/dist/cesium/Workers/createCorridorOutlineGeometry.js +0 -26
  440. package/dist/cesium/Workers/createCylinderGeometry.js +0 -26
  441. package/dist/cesium/Workers/createCylinderOutlineGeometry.js +0 -26
  442. package/dist/cesium/Workers/createEllipseGeometry.js +0 -26
  443. package/dist/cesium/Workers/createEllipseOutlineGeometry.js +0 -26
  444. package/dist/cesium/Workers/createEllipsoidGeometry.js +0 -26
  445. package/dist/cesium/Workers/createEllipsoidOutlineGeometry.js +0 -26
  446. package/dist/cesium/Workers/createFrustumGeometry.js +0 -26
  447. package/dist/cesium/Workers/createFrustumOutlineGeometry.js +0 -26
  448. package/dist/cesium/Workers/createGeometry.js +0 -26
  449. package/dist/cesium/Workers/createGroundPolylineGeometry.js +0 -26
  450. package/dist/cesium/Workers/createPlaneGeometry.js +0 -26
  451. package/dist/cesium/Workers/createPlaneOutlineGeometry.js +0 -26
  452. package/dist/cesium/Workers/createPolygonGeometry.js +0 -26
  453. package/dist/cesium/Workers/createPolygonOutlineGeometry.js +0 -26
  454. package/dist/cesium/Workers/createPolylineGeometry.js +0 -26
  455. package/dist/cesium/Workers/createPolylineVolumeGeometry.js +0 -26
  456. package/dist/cesium/Workers/createPolylineVolumeOutlineGeometry.js +0 -26
  457. package/dist/cesium/Workers/createRectangleGeometry.js +0 -26
  458. package/dist/cesium/Workers/createRectangleOutlineGeometry.js +0 -26
  459. package/dist/cesium/Workers/createSimplePolylineGeometry.js +0 -26
  460. package/dist/cesium/Workers/createSphereGeometry.js +0 -26
  461. package/dist/cesium/Workers/createSphereOutlineGeometry.js +0 -26
  462. package/dist/cesium/Workers/createTaskProcessorWorker.js +0 -26
  463. package/dist/cesium/Workers/createVectorTileClampedPolylines.js +0 -26
  464. package/dist/cesium/Workers/createVectorTileGeometries.js +0 -26
  465. package/dist/cesium/Workers/createVectorTilePoints.js +0 -26
  466. package/dist/cesium/Workers/createVectorTilePolygons.js +0 -26
  467. package/dist/cesium/Workers/createVectorTilePolylines.js +0 -26
  468. package/dist/cesium/Workers/createVerticesFromGoogleEarthEnterpriseBuffer.js +0 -26
  469. package/dist/cesium/Workers/createVerticesFromHeightmap.js +0 -26
  470. package/dist/cesium/Workers/createVerticesFromQuantizedTerrainMesh.js +0 -26
  471. package/dist/cesium/Workers/createWallGeometry.js +0 -26
  472. package/dist/cesium/Workers/createWallOutlineGeometry.js +0 -26
  473. package/dist/cesium/Workers/decodeDraco.js +0 -26
  474. package/dist/cesium/Workers/decodeGoogleEarthEnterprisePacket.js +0 -26
  475. package/dist/cesium/Workers/decodeI3S.js +0 -26
  476. package/dist/cesium/Workers/transcodeKTX2.js +0 -56
  477. package/dist/cesium/Workers/transferTypedArrayTest.js +0 -26
  478. package/dist/cesium/Workers/upsampleQuantizedTerrainMesh.js +0 -26
  479. package/src/engines/Cesium/core/Globe.tsx +0 -104
  480. /package/src/{Map/Sketch/utils.ts → utils/use-window-event.ts} +0 -0
@@ -1,1346 +0,0 @@
1
- /* packages/widgets/Source/shared.css */
2
- .cesium-svgPath-svg {
3
- position: absolute;
4
- top: 0;
5
- left: 0;
6
- width: 100%;
7
- height: 100%;
8
- overflow: hidden;
9
- }
10
- .cesium-button {
11
- display: inline-block;
12
- position: relative;
13
- background: #303336;
14
- border: 1px solid #444;
15
- color: #edffff;
16
- fill: #edffff;
17
- border-radius: 4px;
18
- padding: 5px 12px;
19
- margin: 2px 3px;
20
- cursor: pointer;
21
- overflow: hidden;
22
- -moz-user-select: none;
23
- -webkit-user-select: none;
24
- -ms-user-select: none;
25
- user-select: none;
26
- }
27
- .cesium-button:focus {
28
- color: #fff;
29
- fill: #fff;
30
- border-color: #ea4;
31
- outline: none;
32
- }
33
- .cesium-button:hover {
34
- color: #fff;
35
- fill: #fff;
36
- background: #48b;
37
- border-color: #aef;
38
- box-shadow: 0 0 8px #fff;
39
- }
40
- .cesium-button:active {
41
- color: #000;
42
- fill: #000;
43
- background: #adf;
44
- border-color: #fff;
45
- box-shadow: 0 0 8px #fff;
46
- }
47
- .cesium-button:disabled,
48
- .cesium-button-disabled,
49
- .cesium-button-disabled:focus,
50
- .cesium-button-disabled:hover,
51
- .cesium-button-disabled:active {
52
- background: #303336;
53
- border-color: #444;
54
- color: #646464;
55
- fill: #646464;
56
- box-shadow: none;
57
- cursor: default;
58
- }
59
- .cesium-button option {
60
- background-color: #000;
61
- color: #eee;
62
- }
63
- .cesium-button option:disabled {
64
- color: #777;
65
- }
66
- .cesium-button input,
67
- .cesium-button label {
68
- cursor: pointer;
69
- }
70
- .cesium-button input {
71
- vertical-align: sub;
72
- }
73
- .cesium-toolbar-button {
74
- box-sizing: border-box;
75
- width: 32px;
76
- height: 32px;
77
- border-radius: 14%;
78
- padding: 0;
79
- vertical-align: middle;
80
- z-index: 0;
81
- }
82
- .cesium-performanceDisplay-defaultContainer {
83
- position: absolute;
84
- top: 50px;
85
- right: 10px;
86
- text-align: right;
87
- }
88
- .cesium-performanceDisplay {
89
- background-color: rgba(40, 40, 40, 0.7);
90
- padding: 7px;
91
- border-radius: 5px;
92
- border: 1px solid #444;
93
- font: bold 12px sans-serif;
94
- }
95
- .cesium-performanceDisplay-fps {
96
- color: #e52;
97
- }
98
- .cesium-performanceDisplay-throttled {
99
- color: #a42;
100
- }
101
- .cesium-performanceDisplay-ms {
102
- color: #de3;
103
- }
104
-
105
- /* packages/widgets/Source/Animation/Animation.css */
106
- .cesium-animation-theme {
107
- visibility: hidden;
108
- display: block;
109
- position: absolute;
110
- z-index: -100;
111
- }
112
- .cesium-animation-themeNormal {
113
- color: #222;
114
- }
115
- .cesium-animation-themeHover {
116
- color: #4488b0;
117
- }
118
- .cesium-animation-themeSelect {
119
- color: #242;
120
- }
121
- .cesium-animation-themeDisabled {
122
- color: #333;
123
- }
124
- .cesium-animation-themeKnob {
125
- color: #222;
126
- }
127
- .cesium-animation-themePointer {
128
- color: #2e2;
129
- }
130
- .cesium-animation-themeSwoosh {
131
- color: #8ac;
132
- }
133
- .cesium-animation-themeSwooshHover {
134
- color: #aef;
135
- }
136
- .cesium-animation-svgText {
137
- fill: #edffff;
138
- font-family: Sans-Serif;
139
- font-size: 15px;
140
- text-anchor: middle;
141
- }
142
- .cesium-animation-blank {
143
- fill: #000;
144
- fill-opacity: 0.01;
145
- stroke: none;
146
- }
147
- .cesium-animation-rectButton {
148
- cursor: pointer;
149
- -moz-user-select: none;
150
- -webkit-user-select: none;
151
- -ms-user-select: none;
152
- user-select: none;
153
- }
154
- .cesium-animation-rectButton .cesium-animation-buttonGlow {
155
- fill: #fff;
156
- stroke: none;
157
- display: none;
158
- }
159
- .cesium-animation-rectButton:hover .cesium-animation-buttonGlow {
160
- display: block;
161
- }
162
- .cesium-animation-rectButton .cesium-animation-buttonPath {
163
- fill: #edffff;
164
- }
165
- .cesium-animation-rectButton .cesium-animation-buttonMain {
166
- stroke: #444;
167
- stroke-width: 1.2;
168
- }
169
- .cesium-animation-rectButton:hover .cesium-animation-buttonMain {
170
- stroke: #aef;
171
- }
172
- .cesium-animation-rectButton:active .cesium-animation-buttonMain {
173
- fill: #abd6ff;
174
- }
175
- .cesium-animation-buttonDisabled {
176
- -moz-user-select: none;
177
- -webkit-user-select: none;
178
- -ms-user-select: none;
179
- user-select: none;
180
- }
181
- .cesium-animation-buttonDisabled .cesium-animation-buttonMain {
182
- stroke: #555;
183
- }
184
- .cesium-animation-buttonDisabled .cesium-animation-buttonPath {
185
- fill: #818181;
186
- }
187
- .cesium-animation-buttonDisabled .cesium-animation-buttonGlow {
188
- display: none;
189
- }
190
- .cesium-animation-buttonToggled .cesium-animation-buttonGlow {
191
- display: block;
192
- fill: #2e2;
193
- }
194
- .cesium-animation-buttonToggled .cesium-animation-buttonMain {
195
- stroke: #2e2;
196
- }
197
- .cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow {
198
- fill: #fff;
199
- }
200
- .cesium-animation-buttonToggled:hover .cesium-animation-buttonMain {
201
- stroke: #2e2;
202
- }
203
- .cesium-animation-shuttleRingG {
204
- cursor: pointer;
205
- }
206
- .cesium-animation-shuttleRingPointer {
207
- cursor: pointer;
208
- }
209
- .cesium-animation-shuttleRingPausePointer {
210
- cursor: pointer;
211
- }
212
- .cesium-animation-shuttleRingBack {
213
- fill: #181818;
214
- fill-opacity: 0.8;
215
- stroke: #333;
216
- stroke-width: 1.2;
217
- }
218
- .cesium-animation-shuttleRingSwoosh line {
219
- stroke: #8ac;
220
- stroke-width: 3;
221
- stroke-opacity: 0.2;
222
- stroke-linecap: round;
223
- }
224
- .cesium-animation-knobOuter {
225
- cursor: pointer;
226
- stroke: #444;
227
- stroke-width: 1.2;
228
- }
229
- .cesium-animation-knobInner {
230
- cursor: pointer;
231
- }
232
-
233
- /* packages/widgets/Source/BaseLayerPicker/BaseLayerPicker.css */
234
- .cesium-baseLayerPicker-selected {
235
- position: absolute;
236
- top: 0;
237
- left: 0;
238
- width: 100%;
239
- height: 100%;
240
- border: none;
241
- }
242
- .cesium-baseLayerPicker-dropDown {
243
- display: block;
244
- position: absolute;
245
- box-sizing: content-box;
246
- top: auto;
247
- right: 0;
248
- width: 320px;
249
- max-height: 500px;
250
- margin-top: 5px;
251
- background-color: rgba(38, 38, 38, 0.75);
252
- border: 1px solid #444;
253
- padding: 6px;
254
- overflow: auto;
255
- border-radius: 10px;
256
- -moz-user-select: none;
257
- -webkit-user-select: none;
258
- -ms-user-select: none;
259
- user-select: none;
260
- transform: translate(0, -20%);
261
- visibility: hidden;
262
- opacity: 0;
263
- transition:
264
- visibility 0s 0.2s,
265
- opacity 0.2s ease-in,
266
- transform 0.2s ease-in;
267
- }
268
- .cesium-baseLayerPicker-dropDown-visible {
269
- transform: translate(0, 0);
270
- visibility: visible;
271
- opacity: 1;
272
- transition: opacity 0.2s ease-out, transform 0.2s ease-out;
273
- }
274
- .cesium-baseLayerPicker-sectionTitle {
275
- display: block;
276
- font-family: sans-serif;
277
- font-size: 16pt;
278
- text-align: left;
279
- color: #edffff;
280
- margin-bottom: 4px;
281
- }
282
- .cesium-baseLayerPicker-choices {
283
- margin-bottom: 5px;
284
- }
285
- .cesium-baseLayerPicker-categoryTitle {
286
- color: #edffff;
287
- font-size: 11pt;
288
- }
289
- .cesium-baseLayerPicker-choices {
290
- display: block;
291
- border: 1px solid #888;
292
- border-radius: 5px;
293
- padding: 5px 0;
294
- }
295
- .cesium-baseLayerPicker-item {
296
- display: inline-block;
297
- vertical-align: top;
298
- margin: 2px 5px;
299
- width: 64px;
300
- text-align: center;
301
- cursor: pointer;
302
- }
303
- .cesium-baseLayerPicker-itemLabel {
304
- display: block;
305
- font-family: sans-serif;
306
- font-size: 8pt;
307
- text-align: center;
308
- vertical-align: middle;
309
- color: #edffff;
310
- cursor: pointer;
311
- word-wrap: break-word;
312
- }
313
- .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemLabel,
314
- .cesium-baseLayerPicker-item:focus .cesium-baseLayerPicker-itemLabel {
315
- text-decoration: underline;
316
- }
317
- .cesium-baseLayerPicker-itemIcon {
318
- display: inline-block;
319
- position: relative;
320
- width: inherit;
321
- height: auto;
322
- background-size: 100% 100%;
323
- border: solid 1px #444;
324
- border-radius: 9px;
325
- color: #edffff;
326
- margin: 0;
327
- padding: 0;
328
- cursor: pointer;
329
- box-sizing: border-box;
330
- }
331
- .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon {
332
- border-color: #fff;
333
- box-shadow: 0 0 8px #fff, 0 0 8px #fff;
334
- }
335
- .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel {
336
- color: rgb(189, 236, 248);
337
- }
338
- .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon {
339
- border: double 4px rgb(189, 236, 248);
340
- }
341
-
342
- /* packages/engine/Source/Widget/CesiumWidget.css */
343
- .cesium-widget {
344
- font-family: sans-serif;
345
- font-size: 16px;
346
- overflow: hidden;
347
- display: block;
348
- position: relative;
349
- top: 0;
350
- left: 0;
351
- width: 100%;
352
- height: 100%;
353
- }
354
- .cesium-widget,
355
- .cesium-widget canvas {
356
- width: 100%;
357
- height: 100%;
358
- touch-action: none;
359
- }
360
- .cesium-widget-credits {
361
- display: block;
362
- position: absolute;
363
- bottom: 0;
364
- left: 0;
365
- color: #fff;
366
- font-size: 10px;
367
- text-shadow: 0px 0px 2px #000000;
368
- padding-right: 5px;
369
- }
370
- .cesium-widget-credits a,
371
- .cesium-widget-credits a:visited {
372
- color: #fff;
373
- }
374
- .cesium-widget-errorPanel {
375
- position: absolute;
376
- top: 0;
377
- right: 0;
378
- bottom: 0;
379
- left: 0;
380
- text-align: center;
381
- background: rgba(0, 0, 0, 0.7);
382
- z-index: 99999;
383
- }
384
- .cesium-widget-errorPanel:before {
385
- display: inline-block;
386
- vertical-align: middle;
387
- height: 100%;
388
- content: "";
389
- }
390
- .cesium-widget-errorPanel-content {
391
- width: 75%;
392
- max-width: 500px;
393
- display: inline-block;
394
- text-align: left;
395
- vertical-align: middle;
396
- border: 1px solid #510c00;
397
- border-radius: 7px;
398
- background-color: #f0d9d5;
399
- font-size: 14px;
400
- color: #510c00;
401
- }
402
- .cesium-widget-errorPanel-content.expanded {
403
- max-width: 75%;
404
- }
405
- .cesium-widget-errorPanel-header {
406
- font-size: 18px;
407
- font-family:
408
- "Open Sans",
409
- Verdana,
410
- Geneva,
411
- sans-serif;
412
- background: #d69d93;
413
- border-bottom: 2px solid #510c00;
414
- padding-bottom: 10px;
415
- border-radius: 3px 3px 0 0;
416
- padding: 15px;
417
- }
418
- .cesium-widget-errorPanel-scroll {
419
- overflow: auto;
420
- font-family:
421
- "Open Sans",
422
- Verdana,
423
- Geneva,
424
- sans-serif;
425
- white-space: pre-wrap;
426
- padding: 0 15px;
427
- margin: 10px 0 20px 0;
428
- }
429
- .cesium-widget-errorPanel-buttonPanel {
430
- padding: 0 15px;
431
- margin: 10px 0 20px 0;
432
- text-align: right;
433
- }
434
- .cesium-widget-errorPanel-buttonPanel button {
435
- border-color: #510c00;
436
- background: #d69d93;
437
- color: #202020;
438
- margin: 0;
439
- }
440
- .cesium-widget-errorPanel-buttonPanel button:focus {
441
- border-color: #510c00;
442
- background: #f0d9d5;
443
- color: #510c00;
444
- }
445
- .cesium-widget-errorPanel-buttonPanel button:hover {
446
- border-color: #510c00;
447
- background: #f0d9d5;
448
- color: #510c00;
449
- }
450
- .cesium-widget-errorPanel-buttonPanel button:active {
451
- border-color: #510c00;
452
- background: #b17b72;
453
- color: #510c00;
454
- }
455
- .cesium-widget-errorPanel-more-details {
456
- text-decoration: underline;
457
- cursor: pointer;
458
- }
459
- .cesium-widget-errorPanel-more-details:hover {
460
- color: #2b0700;
461
- }
462
-
463
- /* packages/widgets/Source/CesiumInspector/CesiumInspector.css */
464
- .cesium-cesiumInspector {
465
- border-radius: 5px;
466
- transition: width ease-in-out 0.25s;
467
- background: rgba(48, 51, 54, 0.8);
468
- border: 1px solid #444;
469
- color: #edffff;
470
- display: inline-block;
471
- position: relative;
472
- padding: 4px 12px;
473
- -moz-user-select: none;
474
- -webkit-user-select: none;
475
- -ms-user-select: none;
476
- user-select: none;
477
- overflow: hidden;
478
- }
479
- .cesium-cesiumInspector-button {
480
- text-align: center;
481
- font-size: 11pt;
482
- }
483
- .cesium-cesiumInspector-visible .cesium-cesiumInspector-button {
484
- border-bottom: 1px solid #aaa;
485
- padding-bottom: 3px;
486
- }
487
- .cesium-cesiumInspector input:enabled,
488
- .cesium-cesiumInspector-button {
489
- cursor: pointer;
490
- }
491
- .cesium-cesiumInspector-visible {
492
- width: 185px;
493
- height: auto;
494
- }
495
- .cesium-cesiumInspector-hidden {
496
- width: 122px;
497
- height: 17px;
498
- }
499
- .cesium-cesiumInspector-sectionContent {
500
- max-height: 600px;
501
- }
502
- .cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionContent {
503
- max-height: 0;
504
- padding: 0 !important;
505
- overflow: hidden;
506
- }
507
- .cesium-cesiumInspector-dropDown {
508
- margin: 5px 0;
509
- font-family: sans-serif;
510
- font-size: 10pt;
511
- width: 185px;
512
- }
513
- .cesium-cesiumInspector-frustumStatistics {
514
- padding-left: 10px;
515
- padding: 5px;
516
- background-color: rgba(80, 80, 80, 0.75);
517
- }
518
- .cesium-cesiumInspector-pickButton {
519
- background-color: rgba(0, 0, 0, 0.3);
520
- border: 1px solid #444;
521
- color: #edffff;
522
- border-radius: 5px;
523
- padding: 3px 7px;
524
- cursor: pointer;
525
- -moz-user-select: none;
526
- -webkit-user-select: none;
527
- -ms-user-select: none;
528
- user-select: none;
529
- margin: 0 auto;
530
- }
531
- .cesium-cesiumInspector-pickButton:focus {
532
- outline: none;
533
- }
534
- .cesium-cesiumInspector-pickButton:active,
535
- .cesium-cesiumInspector-pickButtonHighlight {
536
- color: #000;
537
- background: #adf;
538
- border-color: #fff;
539
- box-shadow: 0 0 8px #fff;
540
- }
541
- .cesium-cesiumInspector-center {
542
- text-align: center;
543
- }
544
- .cesium-cesiumInspector-sectionHeader {
545
- font-weight: bold;
546
- font-size: 10pt;
547
- margin: 0;
548
- cursor: pointer;
549
- }
550
- .cesium-cesiumInspector-pickSection {
551
- border: 1px solid #aaa;
552
- border-radius: 5px;
553
- padding: 3px;
554
- margin-bottom: 5px;
555
- }
556
- .cesium-cesiumInspector-sectionContent {
557
- margin-bottom: 10px;
558
- transition: max-height 0.25s;
559
- }
560
- .cesium-cesiumInspector-tileText {
561
- padding-bottom: 10px;
562
- border-bottom: 1px solid #aaa;
563
- }
564
- .cesium-cesiumInspector-relativeText {
565
- padding-top: 10px;
566
- }
567
- .cesium-cesiumInspector-sectionHeader::before {
568
- margin-right: 5px;
569
- content: "-";
570
- width: 1ch;
571
- display: inline-block;
572
- }
573
- .cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionHeader::before {
574
- content: "+";
575
- }
576
-
577
- /* packages/widgets/Source/Cesium3DTilesInspector/Cesium3DTilesInspector.css */
578
- ul.cesium-cesiumInspector-statistics {
579
- margin: 0;
580
- padding-top: 3px;
581
- padding-bottom: 3px;
582
- }
583
- ul.cesium-cesiumInspector-statistics + ul.cesium-cesiumInspector-statistics {
584
- border-top: 1px solid #aaa;
585
- }
586
- .cesium-cesiumInspector-slider {
587
- margin-top: 5px;
588
- }
589
- .cesium-cesiumInspector-slider input[type=number] {
590
- text-align: left;
591
- background-color: #222;
592
- outline: none;
593
- border: 1px solid #444;
594
- color: #edffff;
595
- width: 100px;
596
- border-radius: 3px;
597
- padding: 1px;
598
- margin-left: 10px;
599
- cursor: auto;
600
- }
601
- .cesium-cesiumInspector-slider input[type=number]::-webkit-outer-spin-button,
602
- .cesium-cesiumInspector-slider input[type=number]::-webkit-inner-spin-button {
603
- -webkit-appearance: none;
604
- margin: 0;
605
- }
606
- .cesium-cesiumInspector-slider input[type=range] {
607
- margin-left: 5px;
608
- vertical-align: middle;
609
- }
610
- .cesium-cesiumInspector-hide .cesium-cesiumInspector-styleEditor {
611
- display: none;
612
- }
613
- .cesium-cesiumInspector-styleEditor {
614
- padding: 10px;
615
- border-radius: 5px;
616
- background: rgba(48, 51, 54, 0.8);
617
- border: 1px solid #444;
618
- }
619
- .cesium-cesiumInspector-styleEditor textarea {
620
- width: 100%;
621
- height: 300px;
622
- background: transparent;
623
- color: #edffff;
624
- border: none;
625
- padding: 0;
626
- white-space: pre;
627
- overflow-wrap: normal;
628
- overflow-x: auto;
629
- }
630
- .cesium-3DTilesInspector {
631
- width: 300px;
632
- pointer-events: all;
633
- }
634
- .cesium-3DTilesInspector-statistics {
635
- font-size: 11px;
636
- }
637
- .cesium-3DTilesInspector-disabledElementsInfo {
638
- margin: 5px 0 0 0;
639
- padding: 0 0 0 20px;
640
- color: #eed202;
641
- }
642
- .cesium-3DTilesInspector div,
643
- .cesium-3DTilesInspector input[type=range] {
644
- width: 100%;
645
- box-sizing: border-box;
646
- }
647
- .cesium-cesiumInspector-error {
648
- color: #ff9e9e;
649
- overflow: auto;
650
- }
651
- .cesium-3DTilesInspector .cesium-cesiumInspector-section {
652
- margin-top: 3px;
653
- }
654
- .cesium-3DTilesInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
655
- border-top: 1px solid white;
656
- }
657
- input.cesium-cesiumInspector-url {
658
- overflow: hidden;
659
- white-space: nowrap;
660
- overflow-x: scroll;
661
- background-color: transparent;
662
- color: white;
663
- outline: none;
664
- border: none;
665
- height: 1em;
666
- width: 100%;
667
- }
668
- .cesium-cesiumInspector .field-group {
669
- display: table;
670
- }
671
- .cesium-cesiumInspector .field-group > label {
672
- display: table-cell;
673
- font-weight: bold;
674
- }
675
- .cesium-cesiumInspector .field-group > .field {
676
- display: table-cell;
677
- width: 100%;
678
- }
679
-
680
- /* packages/widgets/Source/VoxelInspector/VoxelInspector.css */
681
- .cesium-VoxelInspector {
682
- width: 300px;
683
- pointer-events: all;
684
- }
685
- .cesium-VoxelInspector div,
686
- .cesium-VoxelInspector input[type=range] {
687
- width: 100%;
688
- box-sizing: border-box;
689
- }
690
- .cesium-VoxelInspector .cesium-cesiumInspector-section {
691
- margin-top: 3px;
692
- }
693
- .cesium-VoxelInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
694
- border-top: 1px solid white;
695
- }
696
-
697
- /* packages/widgets/Source/FullscreenButton/FullscreenButton.css */
698
- .cesium-button.cesium-fullscreenButton {
699
- display: block;
700
- width: 100%;
701
- height: 100%;
702
- margin: 0;
703
- border-radius: 0;
704
- }
705
-
706
- /* packages/widgets/Source/VRButton/VRButton.css */
707
- .cesium-button.cesium-vrButton {
708
- display: block;
709
- width: 100%;
710
- height: 100%;
711
- margin: 0;
712
- border-radius: 0;
713
- }
714
-
715
- /* packages/widgets/Source/Geocoder/Geocoder.css */
716
- .cesium-viewer-geocoderContainer .cesium-geocoder-input {
717
- border: solid 1px #444;
718
- background-color: rgba(40, 40, 40, 0.7);
719
- color: white;
720
- display: inline-block;
721
- vertical-align: middle;
722
- width: 0;
723
- height: 32px;
724
- margin: 0;
725
- padding: 0 32px 0 0;
726
- border-radius: 0;
727
- box-sizing: border-box;
728
- transition: width ease-in-out 0.25s, background-color 0.2s ease-in-out;
729
- -webkit-appearance: none;
730
- }
731
- .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input {
732
- border-color: #aef;
733
- box-shadow: 0 0 8px #fff;
734
- }
735
- .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
736
- border-color: #ea4;
737
- background-color: rgba(15, 15, 15, 0.9);
738
- box-shadow: none;
739
- outline: none;
740
- }
741
- .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input,
742
- .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus,
743
- .cesium-viewer-geocoderContainer .cesium-geocoder-input-wide {
744
- padding-left: 4px;
745
- width: 250px;
746
- }
747
- .cesium-viewer-geocoderContainer .search-results {
748
- position: absolute;
749
- background-color: #000;
750
- color: #eee;
751
- overflow-y: auto;
752
- opacity: 0.8;
753
- width: 100%;
754
- }
755
- .cesium-viewer-geocoderContainer .search-results ul {
756
- list-style-type: none;
757
- margin: 0;
758
- padding: 0;
759
- }
760
- .cesium-viewer-geocoderContainer .search-results ul li {
761
- font-size: 14px;
762
- padding: 3px 10px;
763
- }
764
- .cesium-viewer-geocoderContainer .search-results ul li:hover {
765
- cursor: pointer;
766
- }
767
- .cesium-viewer-geocoderContainer .search-results ul li.active {
768
- background: #48b;
769
- }
770
- .cesium-geocoder-searchButton {
771
- background-color: #303336;
772
- display: inline-block;
773
- position: absolute;
774
- cursor: pointer;
775
- width: 32px;
776
- top: 1px;
777
- right: 1px;
778
- height: 30px;
779
- vertical-align: middle;
780
- fill: #edffff;
781
- }
782
- .cesium-geocoder-searchButton:hover {
783
- background-color: #48b;
784
- }
785
-
786
- /* packages/widgets/Source/InfoBox/InfoBox.css */
787
- .cesium-infoBox {
788
- display: block;
789
- position: absolute;
790
- top: 50px;
791
- right: 0;
792
- width: 40%;
793
- max-width: 480px;
794
- background: rgba(38, 38, 38, 0.95);
795
- color: #edffff;
796
- border: 1px solid #444;
797
- border-right: none;
798
- border-top-left-radius: 7px;
799
- border-bottom-left-radius: 7px;
800
- box-shadow: 0 0 10px 1px #000;
801
- transform: translate(100%, 0);
802
- visibility: hidden;
803
- opacity: 0;
804
- transition:
805
- visibility 0s 0.2s,
806
- opacity 0.2s ease-in,
807
- transform 0.2s ease-in;
808
- }
809
- .cesium-infoBox-visible {
810
- transform: translate(0, 0);
811
- visibility: visible;
812
- opacity: 1;
813
- transition: opacity 0.2s ease-out, transform 0.2s ease-out;
814
- }
815
- .cesium-infoBox-title {
816
- display: block;
817
- height: 20px;
818
- padding: 5px 30px 5px 25px;
819
- background: rgba(84, 84, 84, 1);
820
- border-top-left-radius: 7px;
821
- text-align: center;
822
- text-overflow: ellipsis;
823
- white-space: nowrap;
824
- overflow: hidden;
825
- box-sizing: content-box;
826
- }
827
- .cesium-infoBox-bodyless .cesium-infoBox-title {
828
- border-bottom-left-radius: 7px;
829
- }
830
- button.cesium-infoBox-camera {
831
- display: block;
832
- position: absolute;
833
- top: 4px;
834
- left: 4px;
835
- width: 22px;
836
- height: 22px;
837
- background: transparent;
838
- border-color: transparent;
839
- border-radius: 3px;
840
- padding: 0 5px;
841
- margin: 0;
842
- }
843
- button.cesium-infoBox-close {
844
- display: block;
845
- position: absolute;
846
- top: 5px;
847
- right: 5px;
848
- height: 20px;
849
- background: transparent;
850
- border: none;
851
- border-radius: 2px;
852
- font-weight: bold;
853
- font-size: 16px;
854
- padding: 0 5px;
855
- margin: 0;
856
- color: #edffff;
857
- }
858
- button.cesium-infoBox-close:focus {
859
- background: rgba(238, 136, 0, 0.44);
860
- outline: none;
861
- }
862
- button.cesium-infoBox-close:hover {
863
- background: #888;
864
- color: #000;
865
- }
866
- button.cesium-infoBox-close:active {
867
- background: #a00;
868
- color: #000;
869
- }
870
- .cesium-infoBox-bodyless .cesium-infoBox-iframe {
871
- display: none;
872
- }
873
- .cesium-infoBox-iframe {
874
- border: none;
875
- width: 100%;
876
- width: calc(100% - 2px);
877
- }
878
-
879
- /* packages/widgets/Source/SceneModePicker/SceneModePicker.css */
880
- span.cesium-sceneModePicker-wrapper {
881
- display: inline-block;
882
- position: relative;
883
- margin: 0 3px;
884
- }
885
- .cesium-sceneModePicker-visible {
886
- visibility: visible;
887
- opacity: 1;
888
- transition: opacity 0.25s linear;
889
- }
890
- .cesium-sceneModePicker-hidden {
891
- visibility: hidden;
892
- opacity: 0;
893
- transition: visibility 0s 0.25s, opacity 0.25s linear;
894
- }
895
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-none {
896
- display: none;
897
- }
898
- .cesium-sceneModePicker-slide-svg {
899
- transition: left 2s;
900
- top: 0;
901
- left: 0;
902
- }
903
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
904
- box-sizing: border-box;
905
- padding: 0;
906
- margin: 3px 0;
907
- }
908
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D,
909
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView,
910
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D {
911
- margin: 0 0 3px 0;
912
- }
913
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-icon2D {
914
- left: 100%;
915
- }
916
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-iconColumbusView {
917
- left: 200%;
918
- }
919
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon3D {
920
- left: -200%;
921
- }
922
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon2D {
923
- left: -100%;
924
- }
925
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-icon3D {
926
- left: -100%;
927
- }
928
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-iconColumbusView {
929
- left: 100%;
930
- }
931
- .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-selected {
932
- border-color: #2e2;
933
- box-shadow: 0 0 8px #fff, 0 0 8px #fff;
934
- }
935
-
936
- /* packages/widgets/Source/ProjectionPicker/ProjectionPicker.css */
937
- span.cesium-projectionPicker-wrapper {
938
- display: inline-block;
939
- position: relative;
940
- margin: 0 3px;
941
- }
942
- .cesium-projectionPicker-visible {
943
- visibility: visible;
944
- opacity: 1;
945
- transition: opacity 0.25s linear;
946
- }
947
- .cesium-projectionPicker-hidden {
948
- visibility: hidden;
949
- opacity: 0;
950
- transition: visibility 0s 0.25s, opacity 0.25s linear;
951
- }
952
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-none {
953
- display: none;
954
- }
955
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-dropDown-icon {
956
- box-sizing: border-box;
957
- padding: 0;
958
- margin: 3px 0;
959
- }
960
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective,
961
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic {
962
- margin: 0 0 3px 0;
963
- }
964
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective .cesium-projectionPicker-iconOrthographic {
965
- left: 100%;
966
- }
967
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic .cesium-projectionPicker-iconPerspective {
968
- left: -100%;
969
- }
970
- .cesium-projectionPicker-wrapper .cesium-projectionPicker-selected {
971
- border-color: #2e2;
972
- box-shadow: 0 0 8px #fff, 0 0 8px #fff;
973
- }
974
-
975
- /* packages/widgets/Source/PerformanceWatchdog/PerformanceWatchdog.css */
976
- .cesium-performance-watchdog-message-area {
977
- position: relative;
978
- background-color: yellow;
979
- color: black;
980
- padding: 10px;
981
- }
982
- .cesium-performance-watchdog-message {
983
- margin-right: 30px;
984
- }
985
- .cesium-performance-watchdog-message-dismiss {
986
- position: absolute;
987
- right: 0;
988
- margin: 0 10px 0 0;
989
- }
990
-
991
- /* packages/widgets/Source/NavigationHelpButton/NavigationHelpButton.css */
992
- .cesium-navigationHelpButton-wrapper {
993
- position: relative;
994
- display: inline-block;
995
- }
996
- .cesium-navigation-help {
997
- visibility: hidden;
998
- position: absolute;
999
- top: 38px;
1000
- right: 2px;
1001
- width: 250px;
1002
- border-radius: 10px;
1003
- transform: scale(0.01);
1004
- transform-origin: 234px -10px;
1005
- transition: visibility 0s 0.25s, transform 0.25s ease-in;
1006
- }
1007
- .cesium-navigation-help-visible {
1008
- visibility: visible;
1009
- transform: scale(1);
1010
- transition: transform 0.25s ease-out;
1011
- }
1012
- .cesium-navigation-help-instructions {
1013
- border: 1px solid #444;
1014
- background-color: rgba(38, 38, 38, 0.75);
1015
- padding-bottom: 5px;
1016
- border-radius: 0 0 10px 10px;
1017
- }
1018
- .cesium-click-navigation-help {
1019
- display: none;
1020
- }
1021
- .cesium-touch-navigation-help {
1022
- display: none;
1023
- padding-top: 5px;
1024
- }
1025
- .cesium-click-navigation-help-visible {
1026
- display: block;
1027
- }
1028
- .cesium-touch-navigation-help-visible {
1029
- display: block;
1030
- }
1031
- .cesium-navigation-help-pan {
1032
- color: #66ccff;
1033
- font-weight: bold;
1034
- }
1035
- .cesium-navigation-help-zoom {
1036
- color: #65fd00;
1037
- font-weight: bold;
1038
- }
1039
- .cesium-navigation-help-rotate {
1040
- color: #ffd800;
1041
- font-weight: bold;
1042
- }
1043
- .cesium-navigation-help-tilt {
1044
- color: #d800d8;
1045
- font-weight: bold;
1046
- }
1047
- .cesium-navigation-help-details {
1048
- color: #ffffff;
1049
- }
1050
- .cesium-navigation-button {
1051
- color: #fff;
1052
- background-color: transparent;
1053
- border-bottom: none;
1054
- border-top: 1px solid #444;
1055
- border-right: 1px solid #444;
1056
- margin: 0;
1057
- width: 50%;
1058
- cursor: pointer;
1059
- }
1060
- .cesium-navigation-button-icon {
1061
- vertical-align: middle;
1062
- padding: 5px 1px;
1063
- }
1064
- .cesium-navigation-button:focus {
1065
- outline: none;
1066
- }
1067
- .cesium-navigation-button-left {
1068
- border-radius: 10px 0 0 0;
1069
- border-left: 1px solid #444;
1070
- }
1071
- .cesium-navigation-button-right {
1072
- border-radius: 0 10px 0 0;
1073
- border-left: none;
1074
- }
1075
- .cesium-navigation-button-selected {
1076
- background-color: rgba(38, 38, 38, 0.75);
1077
- }
1078
- .cesium-navigation-button-unselected {
1079
- background-color: rgba(0, 0, 0, 0.75);
1080
- }
1081
- .cesium-navigation-button-unselected:hover {
1082
- background-color: rgba(76, 76, 76, 0.75);
1083
- }
1084
-
1085
- /* packages/widgets/Source/SelectionIndicator/SelectionIndicator.css */
1086
- .cesium-selection-wrapper {
1087
- position: absolute;
1088
- width: 160px;
1089
- height: 160px;
1090
- pointer-events: none;
1091
- visibility: hidden;
1092
- opacity: 0;
1093
- transition: visibility 0s 0.2s, opacity 0.2s ease-in;
1094
- }
1095
- .cesium-selection-wrapper-visible {
1096
- visibility: visible;
1097
- opacity: 1;
1098
- transition: opacity 0.2s ease-out;
1099
- }
1100
- .cesium-selection-wrapper svg {
1101
- fill: #2e2;
1102
- stroke: #000;
1103
- stroke-width: 1.1px;
1104
- }
1105
-
1106
- /* packages/widgets/Source/Timeline/Timeline.css */
1107
- .cesium-timeline-main {
1108
- position: relative;
1109
- left: 0;
1110
- bottom: 0;
1111
- overflow: hidden;
1112
- border: solid 1px #888;
1113
- -moz-user-select: none;
1114
- -webkit-user-select: none;
1115
- -ms-user-select: none;
1116
- user-select: none;
1117
- }
1118
- .cesium-timeline-trackContainer {
1119
- width: 100%;
1120
- overflow: auto;
1121
- border-top: solid 1px #888;
1122
- position: relative;
1123
- top: 0;
1124
- left: 0;
1125
- }
1126
- .cesium-timeline-tracks {
1127
- position: absolute;
1128
- top: 0;
1129
- left: 0;
1130
- width: 100%;
1131
- }
1132
- .cesium-timeline-needle {
1133
- position: absolute;
1134
- left: 0;
1135
- top: 1.7em;
1136
- bottom: 0;
1137
- width: 1px;
1138
- background: #f00;
1139
- }
1140
- .cesium-timeline-bar {
1141
- position: relative;
1142
- left: 0;
1143
- top: 0;
1144
- overflow: hidden;
1145
- cursor: pointer;
1146
- width: 100%;
1147
- height: 1.7em;
1148
- background:
1149
- linear-gradient(
1150
- to bottom,
1151
- rgba(116, 117, 119, 0.8) 0%,
1152
- rgba(58, 68, 82, 0.8) 11%,
1153
- rgba(46, 50, 56, 0.8) 46%,
1154
- rgba(53, 53, 53, 0.8) 81%,
1155
- rgba(53, 53, 53, 0.8) 100%);
1156
- }
1157
- .cesium-timeline-ruler {
1158
- visibility: hidden;
1159
- white-space: nowrap;
1160
- font-size: 80%;
1161
- z-index: -200;
1162
- }
1163
- .cesium-timeline-highlight {
1164
- position: absolute;
1165
- bottom: 0;
1166
- left: 0;
1167
- background: #08f;
1168
- }
1169
- .cesium-timeline-ticLabel {
1170
- position: absolute;
1171
- top: 0;
1172
- left: 0;
1173
- white-space: nowrap;
1174
- font-size: 80%;
1175
- color: #eee;
1176
- }
1177
- .cesium-timeline-ticMain {
1178
- position: absolute;
1179
- bottom: 0;
1180
- left: 0;
1181
- width: 1px;
1182
- height: 50%;
1183
- background: #eee;
1184
- }
1185
- .cesium-timeline-ticSub {
1186
- position: absolute;
1187
- bottom: 0;
1188
- left: 0;
1189
- width: 1px;
1190
- height: 33%;
1191
- background: #aaa;
1192
- }
1193
- .cesium-timeline-ticTiny {
1194
- position: absolute;
1195
- bottom: 0;
1196
- left: 0;
1197
- width: 1px;
1198
- height: 25%;
1199
- background: #888;
1200
- }
1201
- .cesium-timeline-icon16 {
1202
- display: block;
1203
- position: absolute;
1204
- width: 16px;
1205
- height: 16px;
1206
- background-image: url(data:text/plain;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIDBITKIVzLEMAAAKNSURBVEjHxdXNSxRhHAfw7zzrqhuoWJnSkrippUVSEKsHI9BTUYdAJA/RoYMREV26rAdn6tAfUARi16hQqkOBQRgUEYFWEC3OwczMjdZd92VmdWfmeelgTjO7q7gb0VzmmZnn85vvPPPMM8B/3qTcE2PPpuTZKB1eWuUQACgXYACYwVFbCTTVeZXB/i55o4LFelcAZfStYD4vpAoPGAGo4GBcQEgSOAUMQyAezwK6iQfDPXnhS/FkHZ+/8VLMWxxqWkfH3gbMRNOYi2roavbja0zHQmoFPYf8ED4Ko4aivm9MOG/u9I8mwrafeK7a/tVrNc/bARYN5noadeq7q0342vXw9CIMU6BmW8rVP9cPBPe52uu+v3O/y9sB4gkTWs6Qsk0mj5ExXMelejvA8WafYmkmGPHanTijdtvif8rx5RiCjdWKs2Cp3jWRDl96KhrbqlBeJqBOLyLQXg0IgbkZDS0dO8EZxZfPSTA9jvDDK3mT0OmP1FXh3XwEEAKdTX5MRWLgjCK4pwH3xt/YnjgLHAv4lHTCAKMMu/wV+KZGob6PoKyMQ0+sgBpZVJZn0NterxQaVqef/DRn+/EXYds/mZx2eVeAW9d65dhCEsaKCb7K8HH0gqTevyh9GDkn0VULRiaLzJKGBu9swfdaiie5RVo9ESURN8E8BE0n7ggACJy8KzghSCzp6DmwWxkaCm24EBXr8wI8Hrkq06QBiRC0t24HALS11IBTCyJl4vb1AXmzpbVYTwoVOXN0h7L8Mwtm8bXPybIQ/5FCX3dA2cr6XowvGCA02CvztAnz9+JiZk1AMxG6fEreSoBiPNmoyNnuWiWVzAIAtISO08E6pZi/3N96AIDn4E3h3P8L/wshP+txtEs4JAAAAABJRU5ErkJggg==);
1207
- background-repeat: no-repeat;
1208
- }
1209
-
1210
- /* packages/widgets/Source/Viewer/Viewer.css */
1211
- .cesium-viewer {
1212
- font-family: sans-serif;
1213
- font-size: 16px;
1214
- overflow: hidden;
1215
- display: block;
1216
- position: relative;
1217
- top: 0;
1218
- left: 0;
1219
- width: 100%;
1220
- height: 100%;
1221
- }
1222
- .cesium-viewer-cesiumWidgetContainer {
1223
- width: 100%;
1224
- height: 100%;
1225
- }
1226
- .cesium-viewer-bottom {
1227
- display: block;
1228
- position: absolute;
1229
- bottom: 0;
1230
- left: 0;
1231
- padding-right: 5px;
1232
- }
1233
- .cesium-viewer .cesium-widget-credits {
1234
- display: inline;
1235
- position: static;
1236
- bottom: auto;
1237
- left: auto;
1238
- padding-right: 0;
1239
- color: #ffffff;
1240
- font-size: 10px;
1241
- text-shadow: 0 0 2px #000000;
1242
- }
1243
- .cesium-viewer-timelineContainer {
1244
- position: absolute;
1245
- bottom: 0;
1246
- left: 169px;
1247
- right: 29px;
1248
- height: 27px;
1249
- padding: 0;
1250
- margin: 0;
1251
- overflow: hidden;
1252
- font-size: 14px;
1253
- }
1254
- .cesium-viewer-animationContainer {
1255
- position: absolute;
1256
- bottom: 0;
1257
- left: 0;
1258
- padding: 0;
1259
- width: 169px;
1260
- height: 112px;
1261
- }
1262
- .cesium-viewer-fullscreenContainer {
1263
- position: absolute;
1264
- bottom: 0;
1265
- right: 0;
1266
- padding: 0;
1267
- width: 29px;
1268
- height: 29px;
1269
- overflow: hidden;
1270
- }
1271
- .cesium-viewer-vrContainer {
1272
- position: absolute;
1273
- bottom: 0;
1274
- right: 0;
1275
- padding: 0;
1276
- width: 29px;
1277
- height: 29px;
1278
- overflow: hidden;
1279
- }
1280
- .cesium-viewer-toolbar {
1281
- display: block;
1282
- position: absolute;
1283
- top: 5px;
1284
- right: 5px;
1285
- }
1286
- .cesium-viewer-cesiumInspectorContainer {
1287
- display: block;
1288
- position: absolute;
1289
- top: 50px;
1290
- right: 10px;
1291
- }
1292
- .cesium-viewer-geocoderContainer {
1293
- position: relative;
1294
- display: inline-block;
1295
- margin: 0 3px;
1296
- }
1297
- .cesium-viewer-cesium3DTilesInspectorContainer {
1298
- display: block;
1299
- position: absolute;
1300
- top: 50px;
1301
- right: 10px;
1302
- max-height: calc(100% - 120px);
1303
- box-sizing: border-box;
1304
- overflow-y: auto;
1305
- overflow-x: hidden;
1306
- }
1307
- .cesium-viewer-voxelInspectorContainer {
1308
- display: block;
1309
- position: absolute;
1310
- top: 50px;
1311
- right: 10px;
1312
- max-height: calc(100% - 120px);
1313
- box-sizing: border-box;
1314
- overflow-y: auto;
1315
- overflow-x: hidden;
1316
- }
1317
-
1318
- /* packages/widgets/Source/I3SBuildingSceneLayerExplorer/I3SBuildingSceneLayerExplorer.css */
1319
- ul {
1320
- list-style-type: none;
1321
- }
1322
- .layersList {
1323
- padding: 0;
1324
- }
1325
- input {
1326
- margin: 0 3px 0 0;
1327
- }
1328
- .expandItem {
1329
- cursor: pointer;
1330
- user-select: none;
1331
- width: 20px;
1332
- }
1333
- .nested,
1334
- #bsl-wrapper {
1335
- display: none;
1336
- }
1337
- .active {
1338
- display: block;
1339
- }
1340
- .li-wrapper {
1341
- display: flex;
1342
- flex-direction: row;
1343
- align-content: center;
1344
- }
1345
-
1346
- /* packages/widgets/Source/widgets.css */