base.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* 右上角按钮组 */
  2. .cesium-viewer-toolbar,
  3. /* 左下角动画控件(时间圆盘) */
  4. .cesium-viewer-animationContainer,
  5. /* 下方时间线 */
  6. .cesium-viewer-timelineContainer,
  7. /* logo信息 */
  8. .cesium-viewer-bottom {
  9. display: none;
  10. }
  11. /**cesium 任务栏的FPS信息*/
  12. .cesium-performanceDisplay-defaultContainer {
  13. top: auto;
  14. bottom: 30rem;
  15. right: 10rem;
  16. }
  17. .cesium-performanceDisplay-ms,
  18. .cesium-performanceDisplay-fps {
  19. /* color: #fff; */
  20. }
  21. .cesium-performanceDisplay-throttled {
  22. display: none;
  23. }
  24. /* 自带帧率窗口移除到地图窗口外 */
  25. .cesium-performanceDisplay {
  26. position: absolute;
  27. float: right;
  28. right: -1000rem;
  29. }
  30. /* 全屏按钮 */
  31. .cesium-viewer-fullscreenContainer {
  32. position: absolute;
  33. top: -999rem;
  34. }
  35. /* app绘图工具按钮 */
  36. #drawButtonDiv {
  37. width: 160rem !important;
  38. background-color: rgba(5, 45, 155, 0) !important;
  39. border-radius: 5rem !important;
  40. display: flex !important;
  41. flex-direction: row !important;
  42. justify-content: space-evenly !important;
  43. padding: 8rem !important;
  44. position: absolute !important;
  45. bottom: 40rem !important;
  46. right: 10rem !important;
  47. }
  48. #drawButtonDiv #btnDrawBackout,#btnDrawComplete {
  49. width: 60rem !important;
  50. height: 30rem !important;
  51. margin-bottom: 8rem !important;
  52. border-radius: 5rem !important;
  53. font-size: 13rem !important;
  54. }