Cesium入门4 - 创建Cesium Viewer

Cesium中文网:http://cesiumcn.org/ | 国内快速访问:http://cesium.coinidea.com/

任何Cesium应用程序的基础都是Viewer。Viewer是一个带有多种功能的可交互的三位数字地球的容器(盒子)。创建一个Viewer和HTML中的一个id为"cesiumContainer"的div绑定即可。

var viewer = new Cesium.Viewer('cesiumContainer');

使用以上代码之后,能看到下图所示的基本的数字地球:

默认地,场景支持鼠标(电脑)和手指(移动设备)交互。控制相机漫游数字地球可以通过以下方式:

  • Left click and drag - Pans the camera over the surface of the globe.
  • Right click and drag - Zooms the camera in and out.
  • Middle wheel scrolling - Also zooms the camera in and out.
  • Middle click and drag - Rotates the camera around the point on the surface of the globe.

    翻译
  • 按住鼠标左键拖拽 - 让相机在数字地球平面平移。
  • 按住鼠标右键拖拽 - 放缩相机。
  • 鼠标滚轮滑动 - 放缩相机。
  • 按住鼠标中键拖拽 - 在当前地球的屏幕中间点,旋转相机。

默认的Viewer自带了一些有用的组件:

  1. Geocoder : A location search tool that flies the camera to queried location. Uses Bing Maps data by default.
  2. HomeButton : Flies the viewer back to a default view.
  3. SceneModePicker : Switches between 3D, 2D and Columbus View (CV) modes.
  4. BaseLayerPicker : Chooses the imagery and terrain to display on the globe.
  5. NavigationHelpButton : Displays the default camera controls.
  6. Animation : Controls the play speed for view animation.
  7. CreditsDisplay : Displays data attributions. Almost always required!
  8. Timeline : Indicates current time and allows users to jump to a specific time using the scrubber.
  9. FullscreenButton : Makes the Viewer fullscreen.

翻译

  1. Geocoder : 一种地理位置搜索工具,用于显示相机访问的地理位置。默认使用微软的Bing地图。
  2. HomeButton : 首页位置,点击之后将视图跳转到默认视角。
  3. SceneModePicker : 切换2D、3D 和 Columbus View (CV) 模式。
  4. BaseLayerPicker : 选择三维数字地球的底图(imagery and terrain)。
  5. NavigationHelpButton : 帮助提示,如何操作数字地球。
  6. Animation :控制视窗动画的播放速度。
  7. CreditsDisplay : 展示商标版权和数据源。
  8. Timeline : 展示当前时间和允许用户在进度条上拖动到任何一个指定的时间。
  9. FullscreenButton : 视察全屏按钮。

我们可以通过代码来配置视窗组件,在我们初始化视窗的时候,通过配置参数添加/移除相关组件。

以下代码是通过参数配置得到的viewer,该Viewer不带selection indicators, base layer picker or scene mode picker等组件。

var viewer = new Cesium.Viewer('cesiumContainer', {
scene3DOnly: true,
selectionIndicator: false,
baseLayerPicker: false
});

如果需要查看Viewer的完整配置,请查看:https://cesiumjs.org/Cesium/Build/Documentation/Viewer.html。

Cesium中文网交流QQ群:807482793

Cesium中文网:http://cesiumcn.org/ | 国内快速访问:http://cesium.coinidea.com/

最新文章

  1. UI控件闪烁及刷新
  2. POJ 3080 后缀数组/KMP
  3. 看完 《重来(REWORK)》
  4. iOS 导出 ipa 包时 三个选项的意义
  5. Codeforces Gym 100637A A. Nano alarm-clocks 前缀和
  6. C语言下的简易计算器
  7. 一个HexToInt的C/C++函数
  8. 《C和指针》读书笔记——第三章 数据
  9. android开发环境重装系统之后的配置
  10. HTML&CSS基础学习笔记1.6-html的文本操作标签
  11. 测试中的代码分享~将可以合并的方法去合并Func不赖
  12. Element is not clickable at point error in chrome
  13. 用python的TK模块实现猜成语游戏(附源码)
  14. 机器学习算法 - 支持向量机SVM
  15. tensorflow mnist read_data_sets fails
  16. JqGrid 多行表头设置
  17. 在Arrays.asList()引发的问题中进一步学习集合与泛型等内容
  18. 1、libgdx简介
  19. Applet web端对文件的读取方式
  20. [powershell]解决Win7SP1 powershell底色变成黑色

热门文章

  1. js Date()获取时间,格式化输出,时间比较大小
  2. 利用struts2上传文件时,如果文件名中含有-符号,那么会出错
  3. libevent源码学习(13):事件主循环event_base_loop
  4. 使用yml简化多行sql语句案例
  5. JAVA中CountDownLatch的简单示例
  6. 【LeetCode】88. Merge Sorted Array 解题报告(Java & Python)
  7. 【剑指Offer】字符串的排列 解题报告(Python)
  8. 1678 lyk与gcd
  9. DP? (hdu3944)
  10. 【机器学习】matplotlib库练习-函数绘图