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()); } }
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.