• arcgis api 实现在线编辑(2):删除要素


    前面

    相关设置可参考arcgis api 实现在线编辑(1):添加要素

    实现步骤

    首先选中某要素,获取其id后执行删除操作。

    选择要素

    1、view中设置高亮属性

    highlightOptions: {
    	color: "orange"
    }
    

    2、view绑定点击事件

    this.currentView.on("click",event => {
        /**
         * hitTest
         * @param event 点击对象
         * @return Promise 返回点击的graphic
         */
        this.currentView.hitTest(event)
        .then(response => {
          if (response.results.length) {
            // 遍历点击的graphic数组
            response.results.forEach(item => {
              let graphic = item.graphic;		
              this.currentView.whenLayerView(graphic.layer).then(layerView =>{
                // 如果view中存在高亮,则取消
                if(this.currentHighLight){
                  this.currentHighLight.remove();
                }
                // 如果不存在高亮,则保存选择的graphic并高亮显示
                this.currentGraphic = graphic;
                this.currentHighLight = layerView.highlight(graphic);
              });
            })
          }
        })
        .catch(error => {
          console.log(error.message)
        })
    })
    // 清除logo
    this.currentView.ui.remove("attribution");
    }
    

    选中地图要素

    3、删除要素

    按钮触发删除事件

        // 删除选择的要素
         if(this.currentGraphic){
           let params = {
             deleteFeatures: [this.currentGraphic]
           }
           this.currentFeatureLayer
           .applyEdits(params)
           .then(editsResult => {
             console.log(editsResult)
           })
           .catch(error => {
             console.log(error.message)
           })
         }
    

    在这里插入图片描述

    结尾

    • 做在线编辑时出现Unable to complete operation.可F12调出控制台,获取请求字符串,使用浏览器打开FeatureServer对应的编辑地址,手动测试。
  • 相关阅读:
    java中讲讲PrintStream的用法,举例?
    Spark Scala当中reduceByKey的用法
    springboot与ActiveMQ整合
    solr(六): 集群
    zookeeper集群
    solr(五): centos中, 整合 tomcat&solr
    springboot redis(单机/集群)
    redis 五种数据类型
    redis 集群搭建: redis-cluster
    redis 持久化
  • 原文地址:https://www.cnblogs.com/asdlijian/p/13514185.html
Copyright © 2020-2023  润新知