123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <!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" />
- <style>
- .flatTable {
- border: 1px solid rgba(255, 255, 255, 0.5);
- }
- .flatTable tr td,
- th {
- border: 1px solid rgba(255, 255, 255, 0.5);
- text-align: center;
- }
- </style>
- </head>
- <body class="dark">
- <!--加载前进行操作提示,优化用户体验-->
- <div id="mask" class="signmask" onclick="removeMask()"></div>
- <div id="mars3dContainer" class="mars3d-container"></div>
- <!-- 面板 -->
- <div class="infoview">
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkClippingPlanes" class="styled" type="checkbox" checked />
- <label for="chkClippingPlanes"> 是否挖地 </label>
- </div>
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkUnionClippingRegions" class="styled" type="checkbox" />
- <label for="chkUnionClippingRegions"> 是否外切割 </label>
- </div>
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkTestTerrain" class="styled" type="checkbox" checked />
- <label for="chkTestTerrain"> 深度检测 </label>
- </div>
- <table id="paramView" class="mars-table">
- <tr>
- <td class="nametd">开挖区域</td>
- <td>
- <input type="button" class="btn btn-primary" value="添加矩形" id="btnDrawExtent" />
- <input type="button" class="btn btn-primary" value="添加多边形" id="btnDraw" />
- <input type="button" class="btn btn-primary" value="清除" id="clearWJ" />
- </td>
- </tr>
- <tr>
- <td class="nametd">开挖深度</td>
- <td><input id="txtHeight" type="number" value="50" min="-500" step="1" max="999" class="form-control" style="width: 100px" />(米)</td>
- </tr>
- </table>
- <!-- 操作单个记录 -->
- <table class="mars-table flatTable">
- <thead>
- <th>开挖区域</th>
- <th>操作</th>
- </thead>
- <tbody id="tbPoly"></tbody>
- </table>
- </div>
- <div id="tipView" class="info-tips">
- (1) 开挖区域内矢量对象无法穿透进行拾取。<br />
- (2) 多个开挖区域距离太远时会存在误差。<br />
- </div>
- <script src="./js/common.js"></script>
- <script type="text/javascript">
- "use script"; //开发环境建议开启严格模式
- var map;
- var terrainClip;
- function initMap(options) {
- //合并属性参数,可覆盖config.json中的对应配置
- var mapOptions = mars3d.Util.merge(options, {
- scene: {
- center: { lat: 30.827414, lng: 116.378229, alt: 16933, heading: 360, pitch: -56 },
- },
- });
- //创建三维地球场景
- map = new mars3d.Map("mars3dContainer", mapOptions);
- var height = Number($("#txtHeight").val());
- terrainClip = new mars3d.thing.TerrainClip({
- diffHeight: height, //井的深度
- image: "./img/textures/excavate_side_min.jpg",
- imageBottom: "./img/textures/excavate_bottom_min.jpg",
- splitNum: 80, //井边界插值数
- });
- map.addThing(terrainClip);
- let areaItem = terrainClip.addArea(
- [
- [116.334222, 30.899171, 645.46],
- [116.370874, 30.899171, 645.46],
- [116.370874, 30.944509, 645.46],
- [116.334222, 30.944509, 645.46],
- ],
- { diffHeight: 900 }
- );
- addTableItem(areaItem);
- let areaItem2 = terrainClip.addArea(
- [
- [116.416497, 30.934256, 775.89],
- [116.427392, 30.962941, 1084.88],
- [116.434838, 30.932608, 900.43],
- [116.462994, 30.923081, 771.42],
- [116.437571, 30.916044, 906.39],
- [116.44977, 30.894487, 776.06],
- [116.424183, 30.908752, 727.02],
- [116.402218, 30.898406, 593.08],
- [116.414309, 30.918806, 588.78],
- [116.387022, 30.933539, 700.65],
- ],
- { diffHeight: 200 }
- );
- addTableItem(areaItem2);
- $("#chkTestTerrain").change(function () {
- var val = $(this).is(":checked");
- map.scene.globe.depthTestAgainstTerrain = val;
- });
- $("#chkClippingPlanes").change(function () {
- var val = $(this).is(":checked");
- terrainClip.enabled = val;
- });
- $("#chkUnionClippingRegions").change(function () {
- var val = $(this).is(":checked");
- terrainClip.clipOutSide = val;
- });
- $("#txtHeight").change(function () {
- var num = Number($(this).val());
- terrainClip.diffHeight = num;
- });
- $("#clearWJ").click(function () {
- terrainClip.clear(); //清除挖地区域
- $("#chkUnionClippingRegions").prop("checked", false);
- $("#chkClippingPlanes").prop("checked", true);
- // 清除表格
- var tbody = document.getElementById("tbPoly");
- tbody.innerHTML = "";
- });
- $("#btnDraw").click(function () {
- map.graphicLayer.startDraw({
- type: "polygon",
- style: {
- color: "#007be6",
- opacity: 0.5,
- outline: false,
- },
- success: function (graphic) {
- //绘制成功后回调
- var positions = graphic.positionsShow;
- map.graphicLayer.clear();
- console.log(JSON.stringify(mars3d.PointTrans.cartesians2lonlats(positions))); //打印下边界
- let areaItem = terrainClip.addArea(positions);
- addTableItem(areaItem);
- },
- });
- });
- $("#btnDrawExtent").click(function () {
- map.graphicLayer.startDraw({
- type: "rectangle",
- style: {
- color: "#007be6",
- opacity: 0.8,
- },
- success: function (graphic) {
- //绘制成功后回调
- var positions = graphic.getOutlinePositions(false);
- map.graphicLayer.clear();
- console.log(JSON.stringify(mars3d.PointTrans.cartesians2lonlats(positions))); //打印下边界
- //挖地区域
- let areaItem = terrainClip.addArea(positions);
- addTableItem(areaItem);
- },
- });
- });
- }
- // 区域表格添加一行记录
- function addTableItem(item) {
- // 增加tr和td表格
- var tbody = document.getElementById("tbPoly");
- var tr = document.createElement("tr");
- tr.innerHTML = `
- <tr>
- <td>开挖区${item.id}</td>
- <td>
- <a class="flyTo" href="javascript:void(0)" title="飞行定位到区域"><i class="fa fa-send-o"></i></a>
- <a class="remove" href="javascript:void(0)" title="删除区域"><i class="fa fa-trash"></i></a>
- </td>
- </tr>`;
- tbody.appendChild(tr);
- //绑定单击事件 定位
- tr.querySelector(".flyTo").addEventListener("click", function (e) {
- map.flyToPositions(item.positions);
- });
- // 移动至绘制区域
- tr.querySelector(".remove").addEventListener("click", function (e) {
- terrainClip.removeArea(item);
- tbody.removeChild(tr);
- });
- }
- </script>
- </body>
- </html>
|