123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <!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>Billboard 图标点 </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="在图上绘制新增一个矢量数据" />
- <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>
- 方法演示:
- <input id="btnStartBounce" type="button" class="btn btn-default" value="开始弹跳" />
- <input id="btnStartBounce2" type="button" class="btn btn-default" value="开始弹跳(自动停止)" />
- <input id="btnStopBounce" type="button" class="btn btn-default" value="停止弹跳" />
- </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: "billboard",
- style: {
- image: "img/marker/mark1.png",
- horizontalOrigin: Cesium.HorizontalOrigin.CENTER,
- verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
- label: {
- //不需要文字时,去掉label配置即可
- text: "可以同时支持文字",
- font_size: 30,
- color: "#ffffff",
- outline: true,
- outlineColor: "#000000",
- pixelOffsetY: -50,
- },
- },
- });
- });
- $("#btnStartBounce").click(function () {
- graphicLayer.eachGraphic((graphic) => {
- if (graphic.startBounce) {
- graphic.startBounce();
- }
- });
- });
- $("#btnStartBounce2").click(function () {
- graphicLayer.eachGraphic((graphic) => {
- if (graphic.startBounce) {
- graphic.startBounce({
- autoStop: true,
- step: 2,
- maxHeight: 90,
- });
- }
- });
- });
- $("#btnStopBounce").click(function () {
- graphicLayer.eachGraphic((graphic) => {
- if (graphic.stopBounce) {
- graphic.stopBounce();
- }
- });
- });
- //加一些演示数据
- addGraphic_a1(graphicLayer);
- addGraphic_a2(graphicLayer);
- addGraphic_a3(graphicLayer);
- addGraphic_04(graphicLayer);
- }
- function addGraphic_a1(graphicLayer) {
- var graphic = new mars3d.graphic.BillboardEntity({
- name: "根据视距缩放图标",
- position: new mars3d.LatLngPoint(116.301798, 30.835848, 915),
- style: {
- image: "img/marker/mark3.png",
- scale: 1,
- horizontalOrigin: Cesium.HorizontalOrigin.CENTER,
- verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
- scaleByDistance: new Cesium.NearFarScalar(10000, 1.0, 500000, 0.1),
- label: {
- text: "我是原始的",
- font_size: 18,
- color: "#ffffff",
- pixelOffsetY: -40,
- distanceDisplayCondition: true,
- distanceDisplayCondition_far: 500000,
- distanceDisplayCondition_near: 0,
- },
- },
- });
- graphicLayer.addGraphic(graphic);
- //演示个性化处理graphic,代码在\js\graphicManager.js
- initGraphicManager(graphic);
- //graphic转json,clone一个对象
- var json = graphic.toJSON();
- console.log("转换后的json", json);
- json.position = [116.33493, 30.822064, 644.43]; //新的坐标
- json.style.label = json.style.label || {};
- json.style.label.text = "我是转换后生成的";
- graphicLayer.addGraphic(json); //支持直接加json,内部转为graphic
- }
- function addGraphic_a2(graphicLayer) {
- var graphic = new mars3d.graphic.BillboardEntity({
- name: "贴地图标",
- position: [116.39224, 30.902853],
- style: {
- image: "img/marker/di3.png",
- scale: 0.5,
- horizontalOrigin: Cesium.HorizontalOrigin.CENTER,
- verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
- clampToGround: true,
- label: { text: "鼠标移入会放大", pixelOffsetY: -50 },
- //高亮时的样式(默认为鼠标移入,也可以指定type:'click'单击高亮),构造后也可以openHighlight、closeHighlight方法来手动调用
- highlight: {
- scale: 0.8,
- },
- },
- });
- graphicLayer.addGraphic(graphic);
- }
- function addGraphic_a3(graphicLayer) {
- var graphic = new mars3d.graphic.BillboardEntity({
- name: "绿色自定义图标",
- position: [116.340443, 30.882935, 389.88],
- style: {
- image: "img/marker/symbol1.png",
- scale: 1,
- pixelOffset: new Cesium.Cartesian2(0, -6), //偏移量
- },
- });
- graphicLayer.addGraphic(graphic);
- }
- function addGraphic_04(graphicLayer) {
- let propertyFJ = getSampledPositionProperty([
- [116.223119, 30.933365, 487.4],
- [116.313957, 30.861597, 417.7],
- [116.333367, 30.847406, 402],
- [116.392083, 30.852692, 616],
- [116.413892, 30.869853, 486.4],
- [116.515749, 30.868033, 669.6],
- ]);
- var graphic = new mars3d.graphic.BillboardEntity({
- position: propertyFJ,
- orientation: new Cesium.VelocityOrientationProperty(propertyFJ),
- style: {
- image: "img/marker/huojian.svg",
- scale: 0.5,
- alignedAxis: new Cesium.VelocityVectorProperty(propertyFJ, true),
- },
- hasEdit: false,
- });
- graphicLayer.addGraphic(graphic);
- }
- //计算演示的SampledPositionProperty轨迹
- function getSampledPositionProperty(points) {
- let property = new Cesium.SampledPositionProperty();
- let start = map.clock.currentTime;
- let positions = mars3d.LatLngArray.toCartesians(points);
- for (let i = 0; i < positions.length; i++) {
- let time = Cesium.JulianDate.addSeconds(start, i * 20, new Cesium.JulianDate());
- let position = positions[i];
- property.addSample(time, position);
- }
- return property;
- }
- </script>
- </body>
- </html>
|