123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <!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="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>PolylineVolume 管道线 </title>
- <script
- type="text/javascript"
- src="../lib/include-lib.js"
- libpath="../lib/"
- include="jquery,font-awesome,toastr,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>
- 图层状态:
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkShow" class="styled" type="checkbox" checked />
- <label for="chkShow"> 显示隐藏 </label>
- </div>
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkPopup" class="styled" type="checkbox" checked />
- <label for="chkPopup"> Popup绑定 </label>
- </div>
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkTooltip" class="styled" type="checkbox" />
- <label for="chkTooltip"> Tooltip绑定 </label>
- </div>
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkContextMenu" class="styled" type="checkbox" checked />
- <label for="chkContextMenu"> 右键菜单绑定 </label>
- </div>
- </div>
- <div>
- 数据维护:
- <input id="btnStartDraw" type="button" class="btn btn-primary" value="图上标绘" title="在图上绘制新增一个矢量数据" />
- <div class="checkbox checkbox-primary checkbox-inline">
- <input id="chkHasEdit" class="styled" type="checkbox" />
- <label for="chkHasEdit"> 是否编辑 </label>
- </div>
- </div>
- <div>
- 数据管理:
- <input id="btnClear" type="button" class="btn btn-danger" value="清除" />
- <input id="btnExpFile" type="button" class="btn btn-primary" value="保存GeoJSON" title="保存为GeoJSON文件" />
- <input id="btnImpFile" type="button" class="btn btn-primary" value="打开GeoJSON" title="打开之前保存的GeoJSON文件" />
- <input id="input_draw_file" type="file" accept=".json,.geojson" style="display: none" />
- </div>
- </div>
- <!-- 切换视角到模型或地形(山区)的快捷按钮 -->
- <script type="text/javascript" src="js/center_terrain_3dtiles.js"></script>
- <!-- 图层管理相关处理js -->
- <script type="text/javascript" src="./js/graphicManager.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, {
- scene: {
- center: { lat: 31.488477, lng: 117.322386, alt: 41062, heading: 2, pitch: -49 },
- },
- });
- //创建三维地球场景
- map = new mars3d.Map("mars3dContainer", mapOptions);
- //创建矢量数据图层
- var graphicLayer = new mars3d.layer.GraphicLayer();
- map.addLayer(graphicLayer);
- //图层管理的相关处理,代码在\js\graphicManager.js
- initLayerManager(graphicLayer);
- //新增绘制
- $("#btnStartDraw").click(function () {
- haoutil.msg("管线的绘制时容易报“Invalid array length”的未知错误,极不稳定,项目中慎用!");
- //开始绘制
- graphicLayer.startDraw({
- type: "polylineVolume",
- // maxPointNum: 2, //可以限定最大点数,2个点绘制后自动结束
- style: {
- shape: "pipeline",
- radius: 80,
- color: "#00ffff",
- opacity: 0.9,
- },
- success: function (graphic) {
- console.log("绘制完成", graphic);
- },
- });
- });
- //加一些演示数据
- addGraphic_a1(graphicLayer);
- addGraphic_a2(graphicLayer);
- addGraphic_a3(graphicLayer);
- addGraphic_a4(graphicLayer);
- addGraphic_a5(graphicLayer);
- }
- function addGraphic_a1(graphicLayer) {
- var graphic = new mars3d.graphic.PolylineVolumeEntity({
- positions: [
- [117.220337, 31.832987, 42.8],
- [117.220242, 31.835234, 45.6],
- [117.216263, 31.835251, 39.3],
- [117.217219, 31.819929, 35.8],
- [117.223096, 31.818342, 29.8],
- [117.249686, 31.818964, 40.1],
- [117.263171, 31.816664, 35.2],
- [117.278695, 31.816107, 35.5],
- [117.279826, 31.804185, 34.5],
- [117.286308, 31.804112, 29.2],
- [117.28621, 31.801059, 24.6],
- ],
- style: {
- shape: "pipeline",
- radius: 80,
- color: "#3388ff",
- opacity: 0.6,
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- //演示个性化处理graphic,代码在\js\graphicManager.js
- initGraphicManager(graphic);
- }
- function addGraphic_a2(graphicLayer) {
- var graphic = new mars3d.graphic.PolylineVolumeEntity({
- positions: [
- [117.172852, 31.862736, 33.69],
- [117.251461, 31.856011, 26.44],
- ],
- style: {
- shape: "pipeline",
- radius: 80,
- color: "#00ffff",
- opacity: 0.9,
- label: {
- text: "我是原始的",
- font_size: 18,
- color: "#ffffff",
- distanceDisplayCondition: true,
- distanceDisplayCondition_far: 500000,
- distanceDisplayCondition_near: 0,
- },
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- //graphic转geojson
- var geojson = graphic.toGeoJSON();
- console.log("转换后的geojson", geojson);
- addGeoJson(geojson, graphicLayer);
- }
- //添加单个geojson为graphic,多个直接用graphicLayer.loadGeoJSON
- function addGeoJson(geojson, graphicLayer) {
- var graphicCopy = mars3d.Util.geoJsonToGraphics(geojson)[0];
- delete graphicCopy.attr;
- //新的坐标
- graphicCopy.positions = [
- [117.172852, 31.872736, 33.69],
- [117.251461, 31.866011, 26.44],
- ];
- graphicCopy.style.label = graphicCopy.style.label || {};
- graphicCopy.style.label.text = "我是转换后生成的";
- graphicLayer.addGraphic(graphicCopy);
- }
- function addGraphic_a3(graphicLayer) {
- var graphic = new mars3d.graphic.PolylineVolumeEntity({
- positions: [
- [117.358187, 31.838662, 12.23],
- [117.4384, 31.819405, 11.78],
- ],
- style: {
- shape: "circle",
- radius: 80,
- cornerType: Cesium.CornerType.BEVELED,
- material: mars3d.MaterialUtil.createMaterialProperty(mars3d.MaterialType.LineFlow, {
- color: "#ff0000",
- image: "img/textures/fenceline.png",
- speed: 10,
- repeat_x: 6,
- }),
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- }
- function addGraphic_a4(graphicLayer) {
- var graphic = new mars3d.graphic.PolylineVolumeEntity({
- positions: [
- [117.348938, 31.805369, 7.63],
- [117.429496, 31.786715, 8.41],
- ],
- style: {
- shape: "star",
- radius: 80,
- cornerType: Cesium.CornerType.MITERED,
- color: "#ffff00",
- opacity: 0.4,
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- }
- function addGraphic_a5(graphicLayer) {
- var graphic = new mars3d.graphic.PolylineVolumeEntity({
- positions: [
- [117.313682, 31.7416, 10.85],
- [117.311934, 31.774753, 19.71],
- [117.305473, 31.800304, 23.86],
- ],
- style: {
- shape: "pipeline",
- radius: 80,
- color: "#0000ff",
- opacity: 0.9,
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- }
- </script>
- </body>
- </html>
|