1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* 右上角按钮组 */
- .cesium-viewer-toolbar,
- /* 左下角动画控件(时间圆盘) */
- .cesium-viewer-animationContainer,
- /* 下方时间线 */
- .cesium-viewer-timelineContainer,
- /* logo信息 */
- .cesium-viewer-bottom {
- display: none;
- }
- /**cesium 任务栏的FPS信息*/
- .cesium-performanceDisplay-defaultContainer {
- top: auto;
- bottom: 30rem;
- right: 10rem;
- }
- .cesium-performanceDisplay-ms,
- .cesium-performanceDisplay-fps {
- /* color: #fff; */
- }
- .cesium-performanceDisplay-throttled {
- display: none;
- }
- /* 自带帧率窗口移除到地图窗口外 */
- .cesium-performanceDisplay {
- position: absolute;
- float: right;
- right: -1000rem;
- }
- /* 全屏按钮 */
- .cesium-viewer-fullscreenContainer {
- position: absolute;
- top: -999rem;
- }
- /* app绘图工具按钮 */
- #drawButtonDiv {
- width: 160rem !important;
- background-color: rgba(5, 45, 155, 0) !important;
- border-radius: 5rem !important;
- display: flex !important;
- flex-direction: row !important;
- justify-content: space-evenly !important;
- padding: 8rem !important;
- position: absolute !important;
- bottom: 40rem !important;
- right: 10rem !important;
- }
- #drawButtonDiv #btnDrawBackout,#btnDrawComplete {
- width: 60rem !important;
- height: 30rem !important;
- margin-bottom: 8rem !important;
- border-radius: 5rem !important;
- font-size: 13rem !important;
- }
|