123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- <!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>Ellipse 椭圆、椭圆柱</title>
- <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>
- 图层状态:
- <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="在图上绘制新增一个矢量数据" />
- <input id="btnStartDrawExtruded" 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, {});
- //创建三维地球场景
- map = new mars3d.Map("mars3dContainer", mapOptions);
- //创建矢量数据图层
- var graphicLayer = new mars3d.layer.GraphicLayer();
- map.addLayer(graphicLayer);
- //图层管理的相关处理,代码在\js\graphicManager.js
- initLayerManager(graphicLayer);
- $("#btnStartDraw").click(function () {
- //开始绘制
- graphicLayer.startDraw({
- type: "ellipse",
- style: {
- color: "#ffff00",
- opacity: 0.6,
- clampToGround: false,
- },
- success: function (graphic) {
- console.log("绘制完成", graphic);
- },
- });
- });
- $("#btnStartDrawExtruded").click(function () {
- //开始绘制
- graphicLayer.startDraw({
- type: "ellipse",
- style: {
- color: "#ff0000",
- opacity: 0.6,
- diffHeight: 600,
- },
- success: function (graphic) {
- console.log("绘制完成", graphic);
- },
- });
- });
- //加一些演示数据
- addGraphic_01(graphicLayer);
- addGraphic_02(graphicLayer);
- addGraphic_03(graphicLayer);
- addGraphic_04(graphicLayer);
- addGraphic_05(graphicLayer);
- }
- //
- function addGraphic_01(graphicLayer) {
- var graphic = new mars3d.graphic.EllipseEntity({
- position: [116.282587, 30.859197, 544.31],
- style: {
- semiMajorAxis: 800, //长半轴 半径
- semiMinorAxis: 600, // 短半轴 半径
- color: "#00ff00",
- opacity: 0.3,
- outline: true,
- outlineWidth: 3,
- outlineColor: "#ffffff",
- clampToGround: true,
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- //演示个性化处理graphic,代码在\js\graphicManager.js
- initGraphicManager(graphic);
- }
- //
- function addGraphic_02(graphicLayer) {
- var graphic = new mars3d.graphic.EllipseEntity({
- position: new mars3d.LatLngPoint(116.329199, 30.881595, 390.3),
- style: {
- semiMajorAxis: 1500, //长半轴 半径
- semiMinorAxis: 900, // 短半轴 半径
- material: mars3d.MaterialUtil.createMaterialProperty(mars3d.MaterialType.CircleWave, {
- color: "#ff0000",
- count: 1, //单个圆圈
- speed: 40,
- }),
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- }
- //
- function addGraphic_03(graphicLayer) {
- var _rotation = Math.random();
- var graphic = new mars3d.graphic.EllipseEntity({
- position: new mars3d.LatLngPoint(116.392526, 30.903729, 933.55),
- style: {
- semiMajorAxis: 1500, //长半轴 半径
- semiMinorAxis: 900, // 短半轴 半径
- material: mars3d.MaterialUtil.createMaterialProperty(mars3d.MaterialType.CircleWave, {
- image: "img/textures/circleScan.png",
- color: "#5fc4ee",
- }),
- stRotation: new Cesium.CallbackProperty(function (e) {
- _rotation -= 0.1;
- return _rotation;
- }, false),
- classificationType: Cesium.ClassificationType.BOTH,
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- }
- //
- function addGraphic_04(graphicLayer) {
- var graphic = new mars3d.graphic.EllipseEntity({
- position: [116.244399, 30.920459],
- style: {
- semiMinorAxis: 1100, // 短半轴 半径
- semiMajorAxis: 2000, //长半轴 半径
- height: 200,
- material: mars3d.MaterialUtil.createMaterialProperty(mars3d.MaterialType.CircleWave, {
- color: "#ffff00",
- count: 2,
- speed: 20,
- }),
- label: {
- text: "我是原始的",
- font_size: 18,
- color: "#ffffff",
- pixelOffsetY: -10,
- 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.position = [116.301991, 30.933872, 624.03];
- graphicCopy.style.label = graphicCopy.style.label || {};
- graphicCopy.style.label.text = "我是转换后生成的";
- graphicLayer.addGraphic(graphicCopy);
- }
- function addGraphic_05(graphicLayer) {
- var graphic = new mars3d.graphic.EllipseEntity({
- position: new mars3d.LatLngPoint(116.37617, 30.847384, 396.12),
- style: {
- semiMajorAxis: 1500, //长半轴 半径
- semiMinorAxis: 900, // 短半轴 半径
- diffHeight: 1000.0,
- color: "#00ff00",
- opacity: 0.3,
- rotationDegree: 45,
- label: { text: "鼠标移入会高亮", pixelOffsetY: -30 },
- //高亮时的样式(默认为鼠标移入,也可以指定type:'click'单击高亮),构造后也可以openHighlight、closeHighlight方法来手动调用
- highlight: {
- color: "#00ff00",
- opacity: 0.7,
- },
- },
- });
- graphicLayer.addGraphic(graphic); //还可以另外一种写法: graphic.addTo(graphicLayer)
- }
- </script>
- </body>
- </html>
|