<?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: Compass on Map for 10.2.7 in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549300#M6730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Technically the Compass control isn't "really" a compass in the direct sense, but more of a North Arrow for the map. Ie it shows the rotation of the map with an arrow in the direction of north.&lt;/P&gt;&lt;P&gt;So to do this in 10.2.7 all you need to do is bind the angle on a &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;RotateTransform&lt;/SPAN&gt; applied to an arrow to the MapView's rotation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Sep 2018 17:15:57 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2018-09-04T17:15:57Z</dc:date>
    <item>
      <title>Compass on Map for 10.2.7</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549299#M6729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to add a compass to a map in a WPF application such that North South East and West can be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I notice version 100 supports this in the toolkit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is anything like this achievable with 10.2.7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott Brady&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2018 23:44:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549299#M6729</guid>
      <dc:creator>ScottBrady2</dc:creator>
      <dc:date>2018-09-03T23:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Compass on Map for 10.2.7</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549300#M6730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Technically the Compass control isn't "really" a compass in the direct sense, but more of a North Arrow for the map. Ie it shows the rotation of the map with an arrow in the direction of north.&lt;/P&gt;&lt;P&gt;So to do this in 10.2.7 all you need to do is bind the angle on a &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;RotateTransform&lt;/SPAN&gt; applied to an arrow to the MapView's rotation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2018 17:15:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549300#M6730</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2018-09-04T17:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Compass on Map for 10.2.7</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549301#M6731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added the following code and it does not appear to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Border &amp;gt;&lt;BR /&gt; &amp;lt;Path Data="M15,0 30,40 18,40 18,400 12,400 12,40 0,40Z" Stroke="Black" Height="100"&lt;BR /&gt; Fill="Black" StrokeThickness="1" HorizontalAlignment="Center" &lt;BR /&gt; RenderTransformOrigin="0.5,0.5"&amp;gt;&lt;BR /&gt; &amp;lt;Path.RenderTransform&amp;gt;&lt;BR /&gt; &amp;lt;RotateTransform Angle="{Binding Angle, ElementName=MyMapView.Rotation}" /&amp;gt;&lt;BR /&gt; &amp;lt;/Path.RenderTransform&amp;gt;&lt;BR /&gt; &amp;lt;/Path&amp;gt;&lt;BR /&gt; &amp;lt;/Border&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When rotating the map the arrow remains stationary and does not reflect the maps rotation and point north&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2018 02:00:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compass-on-map-for-10-2-7/m-p/549301#M6731</guid>
      <dc:creator>ScottBrady2</dc:creator>
      <dc:date>2018-09-12T02:00:45Z</dc:date>
    </item>
  </channel>
</rss>

