CesiumJS网站不适用于手机

时间:2016-02-27 20:49:38

标签: cesium

我使用CesiumJS创建了Web应用程序。

在计算机上它的工作正常,但在移动设备上只需重新加载(Safari)和错误(Chrome)。

我从朋友处获得Mac我使用开发人员工具并在移动设备上看到错误(参见图片) enter image description here

我为此尝试了一些解决方案,以禁用iFrame沙盒属性,但不会再次使用。

该网站是:

This is my web site

请你给我一个解决方案吗?

由于

1 个答案:

答案 0 :(得分:0)

我花了30个小时在不同版本的网站上工作。 我尝试了 bootstrap bootstrap 脚本 allow-scripts ,一切。

我找到了解决方案!!!!!!!!!

我将所有 标记放在 .html 文档中的 标记中。 我还使用了 Hello world.html 文档中的 标记。

我的标题现在看起来像这样:

  <head>
    <!-- Use correct character set. -->
    <meta charset="utf-8">
    <!-- Tell IE to use the latest, best version. -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
    <title>Molim te radi</title>
    <!-- LBOOT -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">


      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
      <script src="Cesium.js"></script>   
      <script src="CesiumBootstrap.js"></script>
      <script src="knockout-3.4.0.js"></script>
      <link rel="stylesheet" href="Widgets/widgets.css">
      <link rel="stylesheet" href="CesiumBootstrap.css" type="text/css">


  </head>

这个 标签就是您(我)所需要的!