if (first.Geometry.Extent.Intersects(second.Geometry.Extent)) { PointCollection pc = new PointCollection(); // will contain all intersection points foreach (var p in (first.Geometry as Polygon).Rings) { for (int i = 0; i < p.Count; i++) if (p.Extent.Intersects(second.Geometry.Extent)) pc.Add(p.Clone()); } }
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.