123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- <!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>gltf模型剖切 </title>
- <!--第三方lib-->
- <script
- type="text/javascript"
- src="../lib/include-lib.js"
- libpath="../lib/"
- include="jquery,font-awesome,bootstrap,bootstrap-checkbox,bootstrap-slider,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">
- <table class="mars-table">
- <tr>
- <td class="nametd">按绘制坐标</td>
- <td colspan="3">
- <input type="button" class="btn btn-primary" value="绘制线" id="btnDrawLine" />
- <input type="button" class="btn btn-primary" value="绘制矩形" id="btnDrawExtent" />
- <input
- type="button"
- class="btn btn-primary"
- value="绘制面"
- id="btnDrawPoly"
- title="提示: 因为使用clippingPlanes接口,部分围合角度时,存在效果不对"
- />
- <input
- type="button"
- class="btn btn-primary"
- value="绘制面(外切)"
- id="btnDrawPoly2"
- title="提示: 因为使用clippingPlanes接口,部分围合角度时,存在效果不对"
- />
- </td>
- </tr>
- <tr>
- <td class="nametd">按正方向</td>
- <td colspan="3">
- <button type="button" id="btnClipping2" class="btn btn-primary">切顶部</button>
- <button type="button" id="btnClipping1" class="btn btn-primary">切底部</button>
- <button type="button" id="btnClipping3" class="btn btn-primary">切东向</button>
- <button type="button" id="btnClipping4" class="btn btn-primary">切西向</button>
- <button type="button" id="btnClipping5" class="btn btn-primary">切南向</button>
- <button type="button" id="btnClipping6" class="btn btn-primary">切北向</button>
- </td>
- </tr>
- <tr>
- <td class="nametd">裁剪距离</td>
- <td>
- <input id="rangeDistance" title="距离" />
- </td>
- <td style="width: 100px">
- <input id="txtDistance" value="0" type="number" class="form-control" step="0.1" />
- </td>
- <td>(米)</td>
- </tr>
- <tr>
- <td class="nametd">斜切偏移量</td>
- <td>
- <input id="rangeNormalZ" title="斜切偏移量" />
- </td>
- <td style="width: 100px">
- </td>
- </tr>
- </table>
- <button type="button" id="btnClear" class="btn btn-primary">清除</button>
- </div>
- <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, {
- scene: {
- center: { lat: 31.841619, lng: 117.140395, alt: 1259, heading: 90, pitch: -51 },
- fxaa: true,
- },
- });
- //创建三维地球场景
- map = new mars3d.Map("mars3dContainer", mapOptions);
- //固定光照,避免gltf模型随时间存在亮度不一致。
- map.fixedLight = true;
- //创建矢量数据图层
- var graphicLayer = new mars3d.layer.GraphicLayer();
- map.addLayer(graphicLayer);
- //加模型
- var graphic = new mars3d.graphic.ModelPrimitive({
- position: [117.150365, 31.841954, 50.26],
- style: {
- url: "//data.mars3d.cn/gltf/mars/dikuai/d1.gltf",
- scale: 1,
- },
- });
- graphicLayer.addGraphic(graphic);
- var modelPlanClip = new mars3d.thing.ModelPlanClip({
- graphic: graphic,
- height: 1, //开挖的深度
- clipOutSide: false,
- edgeColor: Cesium.Color.GREY,
- edgeWidth: 2.0,
- });
- map.addThing(modelPlanClip);
- $("#btnClear").click(function () {
- modelPlanClip.clear();
- });
- $("#rangeDistance")
- .slider({ min: -100, max: 100, step: 1.0, value: 0 })
- .on("change", (e) => {
- if (e?.value) {
- var value = e.value.newValue;
- $("#txtDistance").val(value.toFixed(1));
- modelPlanClip.distance = value;
- }
- });
- $("#txtDistance").change(function () {
- var value = Number($(this).val());
- modelPlanClip.distance = value;
- });
- $("#rangeNormalZ")
- .slider({ min: -10, max: 10, step: 0.1, value: 0 })
- .on("change", (e) => {
- if (e?.value) {
- var value = e.value.newValue;
- modelPlanClip.normalZ = value;
- }
- });
- $("#btnClipping1").click(function () {
- modelPlanClip.type = mars3d.thing.ModelPlanClip.Type.Z;
- });
- $("#btnClipping2").click(function () {
- modelPlanClip.type = mars3d.thing.ModelPlanClip.Type.ZR;
- });
- $("#btnClipping3").click(function () {
- modelPlanClip.type = mars3d.thing.ModelPlanClip.Type.XR;
- });
- $("#btnClipping4").click(function () {
- modelPlanClip.type = mars3d.thing.ModelPlanClip.Type.X;
- });
- $("#btnClipping5").click(function () {
- modelPlanClip.type = mars3d.thing.ModelPlanClip.Type.Y;
- });
- $("#btnClipping6").click(function () {
- modelPlanClip.type = mars3d.thing.ModelPlanClip.Type.YR;
- });
- $("#btnDrawExtent").click(function () {
- modelPlanClip.clear();
- map.graphicLayer.startDraw({
- type: "rectangle",
- style: {
- color: "#007be6",
- opacity: 0.8,
- outline: false,
- },
- success: function (graphic) {
- //绘制成功后回调
- var positions = graphic.getOutlinePositions(false);
- map.graphicLayer.clear();
- modelPlanClip.positions = positions;
- },
- });
- });
- $("#btnDrawPoly").click(function () {
- modelPlanClip.clear();
- map.graphicLayer.startDraw({
- type: "polygon",
- style: {
- color: "#007be6",
- opacity: 0.5,
- clampToGround: true,
- },
- success: function (graphic) {
- //绘制成功后回调
- var positions = graphic.positionsShow;
- map.graphicLayer.clear();
- modelPlanClip.positions = positions;
- },
- });
- });
- $("#btnDrawPoly2").click(function () {
- modelPlanClip.clear();
- map.graphicLayer.startDraw({
- type: "polygon",
- style: {
- color: "#007be6",
- opacity: 0.5,
- clampToGround: true,
- },
- success: function (graphic) {
- //绘制成功后回调
- var positions = graphic.positionsShow;
- map.graphicLayer.clear();
- modelPlanClip.clipOutSide = true;
- modelPlanClip.positions = positions;
- },
- });
- });
- $("#btnDrawLine").click(function () {
- modelPlanClip.clear();
- map.graphicLayer.startDraw({
- type: "polyline",
- maxPointNum: 2,
- style: {
- color: "#007be6",
- opacity: 0.8,
- outline: false,
- },
- success: function (graphic) {
- //绘制成功后回调
- var positions = graphic.positionsShow;
- map.graphicLayer.clear();
- modelPlanClip.positions = positions;
- },
- });
- });
- }
- </script>
- </body>
- </html>
|