<?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 Display GPS data in ArcGIS Runtime SDK for WPF (Retired) Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/display-gps-data/m-p/494012#M2477</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have some GPS coordinates which I want to display in a map.&lt;/P&gt;&lt;P&gt;I downloaded ArcGIS Runtime SDK for DotNet 1025&lt;/P&gt;&lt;P&gt;and created a sample application.&lt;/P&gt;&lt;P&gt;I can display a map in a WPF aplication.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am searching for some time but did not find how to navigate to a given position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the same uing the Bing Map control.&lt;/P&gt;&lt;P&gt;There it is pretty simple:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;this&lt;/SPAN&gt;.LocalMap.Center = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #2b91af;"&gt;Location&lt;/SPAN&gt;(position.Latitude, position.Longitude);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there somethis similar in Arc GIS?&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2015 13:38:51 GMT</pubDate>
    <dc:creator>ClemensHoffmann</dc:creator>
    <dc:date>2015-03-02T13:38:51Z</dc:date>
    <item>
      <title>Display GPS data</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/display-gps-data/m-p/494012#M2477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have some GPS coordinates which I want to display in a map.&lt;/P&gt;&lt;P&gt;I downloaded ArcGIS Runtime SDK for DotNet 1025&lt;/P&gt;&lt;P&gt;and created a sample application.&lt;/P&gt;&lt;P&gt;I can display a map in a WPF aplication.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am searching for some time but did not find how to navigate to a given position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the same uing the Bing Map control.&lt;/P&gt;&lt;P&gt;There it is pretty simple:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue;"&gt;this&lt;/SPAN&gt;.LocalMap.Center = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #2b91af;"&gt;Location&lt;/SPAN&gt;(position.Latitude, position.Longitude);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there somethis similar in Arc GIS?&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 13:38:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/display-gps-data/m-p/494012#M2477</guid>
      <dc:creator>ClemensHoffmann</dc:creator>
      <dc:date>2015-03-02T13:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Display GPS data</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/display-gps-data/m-p/494013#M2478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;I figured it out mayself.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2b91af;"&gt;GeometryEngine&lt;/SPAN&gt;.Project is doing the job&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The GPS coordinates for Parque Jose Marin in Cinefuegos has&lt;/P&gt;&lt;P&gt;a lattitude of -80.4531737 and a longitude of 22.1459153.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The GPS MapPoint is &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #2b91af;"&gt;MapPoint&lt;/SPAN&gt;(-80.4531737, 22.1459153, &lt;SPAN style="color: #2b91af;"&gt;SpatialReferences&lt;/SPAN&gt;.Wgs84)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The GPS location is converted using &lt;SPAN style="color: #2b91af;"&gt;GeometryEngine&lt;/SPAN&gt;.Project&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #2b91af;"&gt;MapPoint&lt;/SPAN&gt; mapped = &lt;SPAN style="color: #2b91af;"&gt;GeometryEngine&lt;/SPAN&gt;.Project(location, &lt;SPAN style="color: #2b91af;"&gt;SpatialReferences&lt;/SPAN&gt;.WebMercator) &lt;SPAN style="color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #2b91af;"&gt;MapPoint&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The mapped point can be used to create a marker and to set the position.&lt;/P&gt;&lt;P&gt;greetings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Clemens Hoffmann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 08:24:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-wpf-retired-questions/display-gps-data/m-p/494013#M2478</guid>
      <dc:creator>ClemensHoffmann</dc:creator>
      <dc:date>2015-03-06T08:24:33Z</dc:date>
    </item>
  </channel>
</rss>

