Cesium|xt3d 文字贴图(含编辑)

该博客展示了如何使用Cesium和XT3D库在3D地图上实现立体墙文字贴图和贴地多边形文字贴图的绘制与编辑功能。用户可以通过点击按钮在场景中绘制对象,并进行编辑,包括调整文字方向和几何信息。此外,还提供了数据加载、保存以及视角设置等功能。
摘要由CSDN通过智能技术生成

Cesium|xt3d 文字贴图(含编辑)

效果

在这里插入图片描述

代码

 <!DOCTYPE html>
<html lang="zh-CN">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>cesium|xt3d</title>
    <!-- 引入Cesium -->
    <script src="https://unpkg.com/cesium@1.84.0/Build/Cesium/Cesium.js"></script>
    <link rel="stylesheet" href="https://unpkg.com/cesium@1.84.0/Build/Cesium/Widgets/widgets.css">
    <script src='http://www.xt3d.cn/libs/turf.min.js'></script>

    <!--  引入xt3d -->
    <script src="http://www.xt3d.cn/xt3dlib/xt3d.min.js"></script>
    <style>
        html,
        body,
        #map3d {
            width: 100%;
            height: 100%;
            margin: 0px;
            padding: 0px;
        }
        
        .btn-container {
            position: absolute;
            left: 10px;
            top: 90px;
            padding: 10px 15px;
            border-radius: 4px;
            border: 1px solid rgba(128, 128, 128, 0.5);
            color: #ffffff;
            background: rgba(0, 0, 0, 0.4);
            box-shadow: 0 3px 14px rgb(128 128 128 / 50%);
            max-width: 300px;
        }
        
        button {
            background: transparent;
            border: 1px solid #00d0ffb8;
            color: white;
            padding: 7px 9px;
            border-radius: 2px;
            margin: 3px;
            cursor: pointer
        }
        
        .tip-item {
            margin: 2px 0px;
            padding: 5px 1px;
        }
    </style>
</head>

<body>
    <div id="map3d"></div>
    <div class="btn-container">
        <button onclick="drawActivate('wall')">立体墙文字贴图</button>
        <button onclick="drawActivate('polygon')">贴地多边形文字贴图</button>
        <div class="tip-item">点击对应的按钮后可以在场景中绘制对应的文字贴图对象,贴地多边形文字贴图绘制完整后点击面对象,修改文字的方向</div>
        <div class="tip-item">点击选中文字贴图对象后可以编辑几何信息和属性信息(调整文字字体大小能够改变清晰度)</div>
        <button onclick="clearDraw()">清空</button>
        <button onclick="save()">保存</button>
    </div>
    <script>
        let xt3dInit = {
            init(el) {
                this.initViewer(el);
                this.load3dtiles();
                this.initPlot();
                this.initDatas();
                this.setView();
            },

            //初始化viewer
            initViewer(el) {
                this.viewer = new Cesium.Viewer(el, {
                    infoBox: false,
                    selectionIndicator: false,
                    navigation: false,
                    animation: false,
                    shouldAnimate: false,
                    timeline: false,
                    baseLayerPicker: false,
                    geocoder: false,
                    homeButton: false,
                    sceneModePicker: false,
                    navigationHelpButton: false,
                    imageryProvider: new Cesium.UrlTemplateImageryProvider({
                        url: "https://t7.tianditu.gov.cn/DataServer?T=img_w&x={x}&y={y}&l={z}&tk=tdtTk"
                    })
                });
                this.viewer.scene.globe.depthTestAgainstTerrain = true; //默认为false 
                //是否开启抗锯齿
                this.viewer.scene.fxaa = true;
                this.viewer.scene.postProcessStages.fxaa.enabled = true;
            },

            //初始化plot
            initPlot() {
                this.plotLayer = new xt3d.LabelPlotting.TextMapPlot.PlotLayer(this.viewer);
                this.plotLayer.setPlotSelectable(true);

                this.plotDraw = new xt3d.LabelPlotting.TextMapPlot.PlotDraw(this.viewer);
                this.plotDraw.PlotDrawEndEvent.addEventListener((plot) => {
                    this.plotLayer.addPlot(plot.toGeoJson());
                    plot.remove();
                });

                this.plotEdit = new xt3d.LabelPlotting.TextMapPlot.PlotEdit(this.viewer, this.plotLayer);
                this.plotEdit.activate();
            },

            //激活绘制
            drawActivate(type) {
                this.plotDraw.activate(type);
            },

            //清除
            clear() {
                this.plotEdit.clear();
                this.plotLayer.clear();
            },

            //初始化数据
            initDatas() {
                fetch("/data.xt3d.cn/assets/data/labelplotting/1605104393540.json").then(res => {
                    return res.json();
                }).then(res => {
                    let features = res.features;
                    features.forEach(feature => {
                        this.plotLayer.addPlot(feature);
                    })
                }).catch(err => {
                    console.log(err)
                })
            },

            //保存数据
            savePlots() {
                const features = [];
                this.plotLayer.plots.forEach(plot => {
                    features.push(plot.toGeoJson());
                })
                let geojson = {
                    "type": "FeatureCollection",
                    "features": features
                }
                let data = JSON.stringify(geojson);

                var blob = new Blob([data], {
                    type: 'text/json'
                });
                var e = document.createEvent('MouseEvents');
                var a = document.createElement('a');
                a.download = new Date().getTime() + ".json";
                a.href = window.URL.createObjectURL(blob);
                a.dataset.downloadurl = ['text/json', a.download, a.href].join(':');
                e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
                a.dispatchEvent(e);
            },

            //加载三维模型
            load3dtiles() {
                var tileset = this.viewer.scene.primitives.add(
                    new Cesium.Cesium3DTileset({
                        url: "http://www.xt3d.cn/data/offset_3dtiles/tileset.json",
                    })
                );

                tileset.readyPromise
                    .then(tileset => {
                        xt3d.TilesetPlugin.setTilesetHeight(tileset, 55);
                    })
                    .otherwise(function(error) {
                        console.log(error);
                    });
            },

            //设置视角
            setView() {
                let flyToOpts = {
                    destination: {
                        x: -1573499.7086387677,
                        y: 5328258.064099133,
                        z: 3122706.275960429
                    },
                    orientation: {
                        heading: 1.2619443239210115,
                        pitch: -0.8615885474865843,
                        roll: 0.004208591854830246
                    },
                    duration: 1
                };
                this.viewer.scene.camera.setView(flyToOpts);
            },

            destroy() {
                this.viewer.entities.removeAll();
                this.viewer.imageryLayers.removeAll(true);
                this.viewer.destroy();
            }
        }

        xt3dInit.init("map3d");

        function drawActivate(type) {
            xt3dInit.drawActivate(type);
        }

        function clearDraw() {
            xt3dInit.clear();
        }

        function save() {
            xt3dInit.savePlots();
        }
    </script>
</body>

</html>

预览地址

xt3d 在线预览地址

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

xt3d

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值