当前位置:   article > 正文

ArcGIS JSAPI 学习教程 - ArcGIS Maps SDK for JavaScript - 框选显示高亮几何对象_arcgis js 撖寡情

arcgis js 撖寡情

ArcGIS JSAPI 学习教程 - ArcGIS Maps SDK for JavaScript - 框选显示高亮对象

在研究 ArcGIS JSAPI RenderNode 高亮(highlights)FBO 的时候,实现了一下框选高亮几何对象,这里分享一下。

本文包括核心代码、完整代码以及在线示例。


核心代码

实际上,就是通过标绘工具,创建矩形标绘,在判断矩形相交,然后高亮相交的几何对象。


// 监听标绘完成事件
sketchViewModel.on("create", async (event) => {

    if (event.state === "complete") {

        const queryGeometry = event.graphic.geometry;

        if (this.campusLayerView) {

            // 获取矩形内几何对象
            const results = await this.campusLayerView.queryFeatures({
                geometry: queryGeometry,
            });

            // 设置高亮
            results.features.forEach((feature) => {
                this.highlights.push(this.campusLayerView.highlight([feature.attributes.OID]));
            })
        }
    }
});

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

完整代码:


<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
    <title>框选显示高亮对象 | Sample | ArcGIS Maps SDK for JavaScript 4.29</title>
    <script type="module" src="/arcgis_api/calcite-components/2.8.1/calcite.esm.js"></script>
    <link rel="stylesheet" type="text/css" href="/arcgis_api/calcite-components/2.8.1/calcite.css" />
    <link rel="stylesheet" href="/arcgis_api/4.29/esri/themes/light/main.css" />
    <script src="/arcgis_api/4.29/init.js"></script>
    <script>
        var _hmt = _hmt || [];
        (function () {
            var hm = document.createElement("script");
            hm.src = "https://hm.baidu.com/hm.js?f80a36f14f8a73bb0f82e0fdbcee3058";
            var s = document.getElementsByTagName("script")[0];
            s.parentNode.insertBefore(hm, s);
        })();
    </script>
    <script>
        require([
                "esri/WebScene",
                "esri/views/SceneView",
                "esri/rest/support/Query",
                "esri/widgets/Legend",
                "esri/core/reactiveUtils",
                "esri/views/3d/webgl/RenderNode",
                "esri/layers/GraphicsLayer",
                "esri/widgets/Sketch/SketchViewModel",

            ],
            (
                WebScene,
                SceneView,
                Query,
                Legend,
                reactiveUtils,
                RenderNode,
                GraphicsLayer,
                SketchViewModel,

            ) => {
                // 使用官方资源
                const webscene = new WebScene({
                    portalItem: {
                        // autocasts as new PortalItem()
                        id: "fbbc829fa7d342e7ae8d18c54a5eab37"
                    }
                });

                // Create a view and set the highlight options
                const view = new SceneView({
                    container: "viewDiv",
                    map: webscene,
                    popup: {
                        dockOptions: {
                            buttonEnabled: false
                        }
                    },
                    qualityProfile: "high",
                    environment: {
                        lighting: {
                            directShadowsEnabled: true
                        }
                    },
                    // 设置默认高亮参数
                    highlightOptions: {
                        haloColor: [255, 38, 150],
                        color: [255, 255, 255],
                        fillOpacity: 0.3
                    }
                });

                // This variable will store the highlight handle that is used to remove the highlight
                this.highlights = [];

                // 创建标绘图层
                const polygonGraphicsLayer = new GraphicsLayer({
                    elevationInfo: {
                        // 注意,这里设置相对于地形,否则会遮挡
                        mode: 'relative-to-ground'
                    }
                });
                view.map.add(polygonGraphicsLayer);

                // add the select by rectangle button the view
                view.ui.add("select-by-rectangle", "top-left");
                const selectButton = document.getElementById("select-by-rectangle");

                // 创建标绘工具
                const sketchViewModel = new SketchViewModel({
                    view: view,
                    layer: polygonGraphicsLayer
                });

                // 监听矩形标绘事件
                selectButton.addEventListener("click", () => {

                    view.closePopup();

                    // 标绘矩形
                    sketchViewModel.create("rectangle");

                    // 移除上一次操作
                    polygonGraphicsLayer.removeAll();

                    // 移除上一次高亮对象
                    if(this.highlights){

                        this.highlights.forEach((highlight) => {
                            highlight.remove();
                        });
                        this.highlights = [];
                    }
                });

                // 监听标绘完成事件
                sketchViewModel.on("create", async (event) => {

                    if (event.state === "complete") {

                        const queryGeometry = event.graphic.geometry;

                        if (this.campusLayerView) {

                            // 获取矩形内几何对象
                            const results = await this.campusLayerView.queryFeatures({
                                geometry: queryGeometry,
                            });

                            // 设置高亮
                            results.features.forEach((feature) => {
                                this.highlights.push(this.campusLayerView.highlight([feature.attributes.OID]));
                            })
                        }
                    }
                });

                view.when(() => {

                    // Get layer from webScene
                    const campusSceneLayer = webscene.allLayers.filter((elem) => {
                        return elem.title === "Buildings";
                    }).items[0];
                    // Define the attributes which are used in the query
                    campusSceneLayer.outFields = ["name"];

                    // Get DOM element where list items will be placed
                    const container = document.getElementById("buildingsList");
                    const buildingCount = document.getElementById("buildingCount");

                    // Highlight is set on the layerView, so we need to detect when the layerView is ready
                    view.whenLayerView(campusSceneLayer).then((campusLayerView) => {

                        this.campusLayerView = campusLayerView;

                        // Wait for the view to finish updating
                        reactiveUtils.when(() => !view.updating, () => {
                            // Query the features available for drawing and get the attributes
                            const query = new Query();
                            campusLayerView.queryFeatures(query).then((result) => {
                                // Empty the list DOM element
                                container.innerHTML = "";
                                buildingCount.innerHTML = `Currently in view: ${result.features.length} buildings`;
                                // For each returned feature create a list item and append it to the container
                                result.features.forEach((feature) => {
                                    const attributes = feature.attributes;
                                    // Create list element
                                    const li = document.createElement("calcite-pick-list-item");
                                    li.setAttribute("label", attributes.name);
                                    li.addEventListener("click", (event) => {
                                        const target = event.target;
                                        const objectId = feature.attributes.OID;
                                        // Create an extent query on the layer view that will return the 3D extent of the feature
                                        const queryExtent = new Query({
                                            objectIds: [objectId]
                                        });
                                        campusLayerView
                                            .queryExtent(queryExtent)
                                            .then((result) => {
                                                // Zoom to the extent of the feature
                                                // Use the expand method to prevent zooming in too close to the feature
                                                if (result.extent) {
                                                    view
                                                        .goTo(result.extent.expand(4), {
                                                            speedFactor: 0.5
                                                        })
                                                        .catch((error) => {
                                                            if (error.name != "AbortError") {
                                                                console.error(error);
                                                            }
                                                        });
                                                }
                                            });
                                        // Remove the previous highlights
                                        if (highlight) {
                                            highlight.remove();
                                        }
                                        // Highlight the feature passing the objectId to the method
                                        highlight = campusLayerView.highlight([objectId]);
                                    });
                                    container.appendChild(li);
                                });
                            });
                        });
                    });
                });

            });
    </script>
    <style>
        html,
        body,
        #viewDiv {
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .panel-side {
            width: 250px;
            position: absolute;
            top: 14px;
            right: 14px;
            bottom: 28px;
            color: #323232;
            background-color: rgb(255, 255, 255);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            overflow: auto;
            z-index: 60;
            font-size: 12px;
            text-align: center;
        }

        .panel-side h2 {
            padding: 0 20px;
            margin: 20px 0;
            font-size: 14px;
            font-weight: 600;
        }

        #buildingCount,
        h2 {
            text-align: center;
        }
    </style>
</head>

<body>
<div class="panel-side esri-widget">
    <h2>Campus buildings</h2>
    <p id="buildingCount">Currently in view: 0 buildings</p>
    <calcite-panel id="buildingsList">
    </calcite-panel>
</div>
<div id="viewDiv"></div>
<div
        id="select-by-rectangle"
        class="esri-widget esri-widget--button esri-widget esri-interactive"
        title="Select features by rectangle"
>
    <span class="esri-icon-checkbox-unchecked"></span>
</div>
</body>

</html>


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269

在这里插入图片描述


在线示例

ArcGIS Maps SDK for JavaScript 在线示例:框选显示高亮对象

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/861526
推荐阅读
相关标签
  

闽ICP备14008679号