Cesium与Three相机同步(3)

news/2024/7/7 20:48:30 标签: 数码相机

Cesium与Three融合的案例demo

<!DOCTYPE html>
<html lang="en" class="dark">

<head>
  <meta charset="UTF-8">
  <link rel="icon" href="/favicon.ico">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Vite App</title>
  <style>
    html,
    body,
    .main,
    #app {
      margin: 0;
      padding: 0;
      overflow: hidden;
    }

    .box-card {
      margin: 5px;
      margin-bottom: 0;
      background: rgba(71, 71, 71, 0.8);
    }

    .cesium-viewer-cesium3DTilesInspectorContainer {
      display: none !important;
    }

    #top-menu {
      position: absolute;
      z-index: 1;
      pointer-events: none;
    }

    .top-wrapper {
      width: 100%;
      height: 70px;
      opacity: 0;
    }

    .top-bag {
      width: 100%;
    }

    .top-title {

      position: absolute;
      width: 600px;
      height: 65px;
      top: 15px;
      left: 50%;
      text-align: center;
      letter-spacing: 8px;
      font-size: 36px;
      color: #fff;
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .HYZongYiTiJ,
    .SourceHanSansCN-Medium {
      font-size: 25px;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  </style>
</head>

<body>
  <div class="top-wrapper" id="top-menu" style="opacity: 1;"><video autoplay="autoplay" loop="loop" muted="muted"
      src="./img/UI/top.webm" type="video/webm" class="top-bag"></video>
    <p class="top-title HYZongYiTiJ">
      GIS与3D引擎融合案例
    </p>
  </div>
  <div id="app"></div>

  <!-- <script type="text/javascript" src="./scripts/element.index.js"></script>
  <link rel="stylesheet" href="./scripts/element.index.css"> -->
  <script src="./dat.gui/dat.gui.min.js"></script>
  <link rel="stylesheet" href="./dat.gui/dat.gui.css">
  <!-- <link rel="stylesheet" href="./css/measuretool.css"> -->
  <link rel="stylesheet" href="./css/common.css">
  <!-- <script src="./demojs/lineComon.js"></script> -->
  <script type="text/javascript" src="./demojs/deployConfig.js"></script>
  <script type="module" src="/src/main.ts"></script>
  <script src="./scripts/wow.js"></script>
</body>

</html>


http://www.niftyadmin.cn/n/5535175.html

相关文章

Windows 11 安装 安卓子系统 (WSA)

How to Install Windows Subsystem for Android (WSA) on Windows 11 新手教程&#xff1a;如何安装Windows 11 安卓子系统 说明 Windows Subsystem for Android 或 WSA 是由 Hyper-V 提供支持的虚拟机&#xff0c;可在 Windows 11 操作系统上运行 Android 应用程序。虽然它需…

双系统的笔记本电脑,系统引导不见了怎么办

双系统的笔记本电脑&#xff0c;系统引导不见了怎么办 个人情况 联想拯救者R9000P 按照了windows11&#xff08;电脑自带的系统&#xff09;&#xff0c;后面自己按照了ubuntu22.04 只是windows11自动更新导致系统的引导项不见的 解决办法 在电脑开机的时候&#xff0c;不停…

onnx模型转rknn到部署

简介 最近开始用3568的板子&#xff0c;之前是在用3399&#xff0c;cpu的话3399比3568强&#xff0c;但是3568有1T的npu算力&#xff0c;所以模型移植过来用npu使用&#xff0c;之前用ncnn感觉太慢了&#xff0c;rk的npu使用没有开源&#xff0c;所以没法兼容&#xff0c;只能跑…

在 Java 中从 for 循环中移出元素的原理及解决方案

在 Java 中从 for 循环中移出元素的原理及解决方案 在 Java 编程中&#xff0c;从集合中移除元素是常见操作。然而&#xff0c;直接在 for 循环中删除或移出元素往往会导致 ConcurrentModificationException&#xff08;数组下标越界&#xff09;。本文将详细解释这种情况发生…

QT 自绘树形控件

资源来自:https://gitee.com/qt-open-source-collection/NavListView/blob/master/navlistview.h 1、解决的问题:一处编译报错;空白区域绘制背景;点击页面崩溃 2、源码: #ifndef NAVLISTVIEW_H #define NAVLISTVIEW_H/*** 作者:feiyangqingyun(QQ:517216493) 2016-10-1…

隐私集合求交(PSI)原理深入浅出

隐私集合求交技术是多方安全计算领域的一个子问题&#xff0c;通常也被称为安全求交、隐私保护集合交集或者隐私交集技术等&#xff0c;其目的是允许持有各自数据集的双方或者多方&#xff0c;执行两方或者多方集合的交集计算&#xff0c;当PSI执行完成&#xff0c;一方或者两方…

CEPH client.admin key获取

通过初始化完毕后&#xff0c;admin节点会在/etc/ceph目标下生成对应的配置文件和对应的key文件&#xff0c;通过ceph orch host add 增加的默认是没有的 如果很不幸admin节点挂了&#xff0c;怎么在其它节点使用ceph -s 命令呢 启蒙方法(比较实用) key可以通过ceph auth expor…

esp32-nvs使用

_____ 使用步骤 1, 初始化 nvs 分区 2, 打开 namespaec 3, 读取或写入键值 如果是 string 或数组类型,先读长度 -- 获取单个数据的值 1, 初始化分区 // Initialize NVSesp_err_t err = nvs_flash_init();if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW…