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()); } }
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.