using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ESRI.ArcGIS.Controls; namespace Kingo.Plugin.MapView.Commands { /// /// 折点捕捉 /// public class IntersectionSnapCommand : BaseSnapCommand2 { public override esriSnappingType SnappingType => esriSnappingType.esriSnappingTypeIntersection; } }