<?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 Re: EditGeometry resource; point feat layer; map moving when moving point/ in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429889#M11098</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;good morning - SOLVED -&amp;nbsp; thanks for yyour help, it solved the issue. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;how do i marked it answered - to ensure that it benefits other readers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ravi.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Sep 2012 14:39:08 GMT</pubDate>
    <dc:creator>Ravichandran_M_Kaushika</dc:creator>
    <dc:date>2012-09-24T14:39:08Z</dc:date>
    <item>
      <title>EditGeometry resource; point feat layer; map moving when moving point/</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429887#M11096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;dear Readers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for taking time to read this query.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I refered the sample: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#EditToolsGeometry" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#EditToolsGeometry&lt;/A&gt;&lt;SPAN&gt; for editing points on a feature layer. I find that my map is also moving with the mouse cursor and the edit graphic highlighted in cyan.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The only thing I am doing different is adding the feature server service at run-time. after getting MyEditGeometry from Layout.Resource, i am doing everything as per the above link.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When i click the point, and try to move the map, the map moves along with the point - so i can move the point feature in a skillful way, then point moves 70 units of distance (for example) and the map follows the point 50 units in the same direction - so effectively, i would have moved the point 20 units of distance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in the above link, the point feature (a blue circle) moves without the map and the map moves independently when no feature is selected for editing. in my problem, i can move the map freely when no point feature is selected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;any suggestions - i might not be setting some flag - i checked the flags for map, myEditGeometry and other objects that i thought could be it, but i am not able to change the above mentioned issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks and regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ravi.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2012 19:09:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429887#M11096</guid>
      <dc:creator>Ravichandran_M_Kaushika</dc:creator>
      <dc:date>2012-09-21T19:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry resource; point feat layer; map moving when moving point/</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429888#M11097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It seems you forgot to set Handled to true in the MouseLeftButtonDown handler, hence the standard event managment (i.e pan) gets actived.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;private void GraphicsLayer_MouseLeftButtonDown(object sender, GraphicMouseButtonEventArgs e) { &amp;nbsp;&amp;nbsp;&amp;nbsp; e.Handled = true; &amp;nbsp;&amp;nbsp; if (e.Graphic.Geometry is MapPoint) &amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; e.Graphic.Selected = true; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedPointGraphic = e.Graphic; &amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp; else &amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; editGeometry.StartEdit(e.Graphic); &amp;nbsp;&amp;nbsp;&amp;nbsp; } }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2012 11:46:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429888#M11097</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-09-24T11:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry resource; point feat layer; map moving when moving point/</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429889#M11098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;good morning - SOLVED -&amp;nbsp; thanks for yyour help, it solved the issue. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;how do i marked it answered - to ensure that it benefits other readers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ravi.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2012 14:39:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429889#M11098</guid>
      <dc:creator>Ravichandran_M_Kaushika</dc:creator>
      <dc:date>2012-09-24T14:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry resource; point feat layer; map moving when moving point/</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429890#M11099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thank you - I marked it answered after posting the reply.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2012 14:40:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-resource-point-feat-layer-map-moving/m-p/429890#M11099</guid>
      <dc:creator>Ravichandran_M_Kaushika</dc:creator>
      <dc:date>2012-09-24T14:40:00Z</dc:date>
    </item>
  </channel>
</rss>

