zoukankan      html  css  js  c++  java
  • ArcGIS Pro做一个矩形选择按钮

    /*
    
       Copyright 2019 Esri
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
       You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
       Unless required by applicable law or agreed to in writing, software
       distributed under the License is distributed on an "AS IS" BASIS,
       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    
       See the License for the specific language governing permissions and
       limitations under the License.
    
    */
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using ArcGIS.Core.Geometry;
    using ArcGIS.Desktop.Mapping;
    
    namespace MapToolSelect
    {
        internal class MapToolSelect : MapTool
        {
            public MapToolSelect()
            {
                IsSketchTool = true;
                SketchType = SketchGeometryType.Rectangle;
                SketchOutputMode = SketchOutputMode.Screen;
            }
    
            protected override Task OnToolActivateAsync(bool active)
            {
                return base.OnToolActivateAsync(active);
            }
    
            protected override Task<bool> OnSketchCompleteAsync(Geometry geometry)
            {
                return ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
                {
            // Using the active map view to select
            // the features that intersect the sketch geometry
            ActiveMapView.SelectFeatures(geometry);
                    return true;
                });
            }
        }
    }
    

      关注微信公众号:

  • 相关阅读:
    Kattis
    HDU
    回溯法理解
    算法第5章上机实践报告
    贪心算法理解
    [模板] Dijkstra(堆优化)算法求最短路 Apare_xzc
    【文件管理系统】 Apaer_xzc
    [CCF] 201403-2 窗口 Apare_xzc
    [CCF] 201412-2 Z字形扫描 Apare_xzc
    [CCF] 201503-5 最小花费 Apare_xzc
  • 原文地址:https://www.cnblogs.com/gisoracle/p/14498016.html
Copyright © 2011-2022 走看看