123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0,minimum-scale=1.0,maximum-scale=1.0" />
- <meta name="author" content="火星科技 http://mars3d.cn " />
- <meta name="apple-touch-fullscreen" content="yes" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <meta name="format-detection" content="telephone=no" />
- <meta name="x5-fullscreen" content="true" />
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
- <!-- 标题及搜索关键字 -->
- <meta name="keywords" content="火星科技,cesium,3D,GIS,marsgis,三维,地球,地图,开发,框架,系统,示例,资料,模型,离线,外包,合肥,安徽,中国" />
- <meta
- name="description"
- content="火星科技 合肥火星 合肥火星科技 合肥火星科技有限公司 leaflet leaflet框架 leaflet开发 cesium cesium开发 cesium框架 三维 地球 模型 gis marsgis 地图离线 地图开发 地图框架 地图外包 框架 开发 外包 地图离线 二维地图 三维地图 全景漫游 地理信息系统 云GIS 三维GIS GIS平台 WebGIS"
- />
- <link rel="shortcut icon" type="image/x-icon" href="" />
- <title>街景操作习惯 </title>
- <!--第三方lib-->
- <script
- type="text/javascript"
- src="../lib/include-lib.js"
- libpath="../lib/"
- include="jquery,font-awesome,bootstrap,bootstrap-checkbox,layer,haoutil,turf,mars3d"
- ></script>
- <link href="css/style.css" rel="stylesheet" />
- </head>
- <body class="dark">
- <!--加载前进行操作提示,优化用户体验-->
- <div id="mask" class="signmask" onclick="removeMask()"></div>
- <div id="mars3dContainer" class="mars3d-container"></div>
- <!-- 面板 -->
- <div class="infoview">
- <div class="radio radio-info radio-inline">
- <input type="radio" id="shadingMaterials1" name="shadingMaterials" value="1" checked />
- <label for="shadingMaterials1">街景操作习惯</label>
- </div>
- <div class="radio radio-info radio-inline">
- <input type="radio" id="shadingMaterials2" name="shadingMaterials" value="0" />
- <label for="shadingMaterials2">Cesium操作习惯 </label>
- </div>
- <div id="czsmView">
- 操作说明:<br />
- 1、右键拖拽,以相机视角为中心进行旋转。<br />
- 2、中键拖拽,可以升高或降低相机高度。<br />
- 3、Ctrl + 中键/右键, 与Cesium原始操作一致。<br />
- 4、左键双击,飞行定位到该点。<br />
- 5、右键双击,围绕该点旋转。
- </div>
- </div>
- <!-- 切换视角到模型或地形(山区)的快捷按钮 -->
- <script type="text/javascript" src="js/center_terrain_3dtiles.js"></script>
- <script src="./js/common.js"></script>
- <script type="text/javascript">
- "use script"; //开发环境建议开启严格模式
- var map;
- function initMap(options) {
- //合并属性参数,可覆盖config.json中的对应配置
- var mapOptions = mars3d.Util.merge(options, {});
- //创建三维地球场景
- map = new mars3d.Map("mars3dContainer", mapOptions);
- var streetView = new mars3d.thing.StreetView({
- rotateSpeed: 30, //右键拖动的移动度数,旋转的方向和速度,正负控制方向。
- windingPointDirection: false, ///绕点旋转方向 true逆时针,false顺时针
- windingPointTime: 30, //绕点旋转的一周时长(秒),控制速度。
- windingPointAngle: 360, //旋转的角度后自动停止
- heightStep: 0.2, //升高或降低相机高度比例,当前相机高度的比例
- moveStep: 0.1, //左键双击定位的移动比例,当前视距的比例
- moveDuration: 3, //左键双击定位动画时长,不指定时cesium内部自动计算的
- });
- map.addThing(streetView);
- $('input:radio[name="shadingMaterials"]').change(function () {
- if ($(this).val() === "1") {
- streetView.enabled = true;
- $("#czsmView").show();
- } else {
- streetView.enabled = false;
- $("#czsmView").hide();
- }
- });
- }
- </script>
- </body>
- </html>
|