<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Intersection Point in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/intersection-point/m-p/518819#M13306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Could someone please tell me how to get the intersection point(s) of a graphic object and a feature element?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://lh6.ggpht.com/_6zrdK5O_LIg/TQ4wWL-LKZI/AAAAAAAABaw/utx9sj30oo4/intersection_1g.png"&gt;&lt;IMG src="http://lh6.ggpht.com/_6zrdK5O_LIg/TQ4wWL-LKZI/AAAAAAAABaw/utx9sj30oo4/intersection_1g.png" /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Feb 2011 16:05:26 GMT</pubDate>
    <dc:creator>deleted-user-hb3f0SCDAPf8</dc:creator>
    <dc:date>2011-02-11T16:05:26Z</dc:date>
    <item>
      <title>Intersection Point</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/intersection-point/m-p/518819#M13306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Could someone please tell me how to get the intersection point(s) of a graphic object and a feature element?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://lh6.ggpht.com/_6zrdK5O_LIg/TQ4wWL-LKZI/AAAAAAAABaw/utx9sj30oo4/intersection_1g.png"&gt;&lt;IMG src="http://lh6.ggpht.com/_6zrdK5O_LIg/TQ4wWL-LKZI/AAAAAAAABaw/utx9sj30oo4/intersection_1g.png" /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2011 16:05:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/intersection-point/m-p/518819#M13306</guid>
      <dc:creator>deleted-user-hb3f0SCDAPf8</dc:creator>
      <dc:date>2011-02-11T16:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection Point</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/intersection-point/m-p/518820#M13307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you looked at this sample? &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Intersect" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Intersect&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When the Intersect is completed, you can get the vertices in your geometry. These are your intersection points.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think another way is to do the following (assuming you are working with polygon):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
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)
 {
&amp;nbsp; for (int i = 0; i &amp;lt; p.Count; i++)
&amp;nbsp;&amp;nbsp; if (p&lt;I&gt;.Extent.Intersects(second.Geometry.Extent))
&amp;nbsp;&amp;nbsp;&amp;nbsp; pc.Add(p&lt;I&gt;.Clone());
 }
}
&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The intersection in the above code checks against geometry extent though. So maybe you need to get the polylines formed by the vertices and check intersection against these polyline extent.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:38:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/intersection-point/m-p/518820#M13307</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T22:38:05Z</dc:date>
    </item>
  </channel>
</rss>

