<?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 for Points in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132365#M3284</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you moving the point location is interactive, you can use Editor.EditVertices command or EditorWidget.EditVertices &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitEditorWidget" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitEditorWidget&lt;/A&gt;&lt;SPAN&gt;. After you click on the EditVertices button, you can start dragging the point feature to its new location.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EditGeometry only support polyline, polygon, envelope geometries. Thus, point geometries are handled separately as seen in this SDK sample &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsGeometry" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsGeometry&lt;/A&gt;&lt;SPAN&gt;. &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void MyMap_MouseMove(object sender, MouseEventArgs e)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (selectedPointGraphic != null)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedPointGraphic.Geometry = MyMap.ScreenToMap(e.GetPosition(MyMap));&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 07:25:09 GMT</pubDate>
    <dc:creator>JenniferNery</dc:creator>
    <dc:date>2021-12-11T07:25:09Z</dc:date>
    <item>
      <title>EditGeometry for Points</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132364#M3283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to use the EditGeometry class to edit the geometry of a Point Feature on my FeatureLayer.&amp;nbsp; Specifically, I only need to move the point a couple of inches.&amp;nbsp; More times than not, it'll also only be in one direction.&amp;nbsp; For instance, I might need to shift a point 2 inches along the Y-axis,&amp;nbsp; but leave the X-axis alone.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Because the measurements have to be as precise as I can make them, I'm trying to use EditGeometry as opposed to the EditVertices tool on the Editor Widget. Is this the correct tool to be using?&amp;nbsp; Or should I try and do this through a WCF service instead?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the assistance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Will&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 20:59:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132364#M3283</guid>
      <dc:creator>WilliamKimrey</dc:creator>
      <dc:date>2012-01-12T20:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry for Points</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132365#M3284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you moving the point location is interactive, you can use Editor.EditVertices command or EditorWidget.EditVertices &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitEditorWidget" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitEditorWidget&lt;/A&gt;&lt;SPAN&gt;. After you click on the EditVertices button, you can start dragging the point feature to its new location.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EditGeometry only support polyline, polygon, envelope geometries. Thus, point geometries are handled separately as seen in this SDK sample &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsGeometry" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsGeometry&lt;/A&gt;&lt;SPAN&gt;. &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void MyMap_MouseMove(object sender, MouseEventArgs e)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (selectedPointGraphic != null)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectedPointGraphic.Geometry = MyMap.ScreenToMap(e.GetPosition(MyMap));&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:25:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132365#M3284</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T07:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry for Points</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132366#M3285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That was the sample I was looking at initially.&amp;nbsp; It looks like I'm not going to be able to use EditGeometry then if it does not work with Points.&amp;nbsp; The geometry edits I need to make are too small and precise to do by dragging the point with the mouse.&amp;nbsp; Guess I'll try a WCF service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Will&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2012 12:05:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132366#M3285</guid>
      <dc:creator>WilliamKimrey</dc:creator>
      <dc:date>2012-01-13T12:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry for Points</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132367#M3286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you know the new geometry (X,Y), you can just set graphic.Geometry = new MapPoint(X, Y, MyMap.SpatialReference); You don't need to handle MouseMove.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 16:29:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132367#M3286</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2012-01-18T16:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: EditGeometry for Points</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132368#M3287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah, that's what I ended up doing.&amp;nbsp; My confusion was when I was trying to edit the existing geometry of a point instead of setting the geometry to a new point.&amp;nbsp; Simple mistake that I should have seen, but for some reason I completely missed it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the asisstance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Will&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2012 16:34:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/editgeometry-for-points/m-p/132368#M3287</guid>
      <dc:creator>WilliamKimrey</dc:creator>
      <dc:date>2012-01-18T16:34:34Z</dc:date>
    </item>
  </channel>
</rss>

